refactor: 가대 상세 조회 api 요청 파라미터 workingWidth 추가
This commit is contained in:
parent
86d3f794e5
commit
1ff3916b81
@ -196,7 +196,8 @@ public class MasterController {
|
||||
req.getInclCd(),
|
||||
req.getConstTp(),
|
||||
req.getMixMatlNo(),
|
||||
req.getRoofPitch());
|
||||
req.getRoofPitch(),
|
||||
req.getWorkingWidth());
|
||||
|
||||
ApiTrestleDetailResponse data = response.getData();
|
||||
data.setRoofIndex(req.getRoofIndex()); // roofIndex 추가하기 위함
|
||||
|
||||
@ -74,7 +74,8 @@ public interface MasterService {
|
||||
@RequestParam String inclCd,
|
||||
@RequestParam String constTp,
|
||||
@RequestParam(required = false) Integer mixMatlNo,
|
||||
@RequestParam(required = false) Integer roofPitch);
|
||||
@RequestParam(required = false) Integer roofPitch,
|
||||
@RequestParam(required = false) String workingWidth);
|
||||
|
||||
// PCS Maker, 시리즈 목록 조회
|
||||
@GetMapping("/pcsMakerList")
|
||||
|
||||
@ -62,4 +62,7 @@ public class ApiTrestleDetailRequest {
|
||||
|
||||
@Schema(description = "지붕index 번호")
|
||||
private String roofIndex;
|
||||
|
||||
@Schema(description = "작업폭")
|
||||
private String workingWidth;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user