refactor: 가대 상세 조회 api 요청 파라미터 workingWidth 추가

This commit is contained in:
Daseul Kim 2025-01-20 10:31:20 +09:00
parent 86d3f794e5
commit 1ff3916b81
3 changed files with 7 additions and 2 deletions

View File

@ -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 추가하기 위함

View File

@ -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")

View File

@ -62,4 +62,7 @@ public class ApiTrestleDetailRequest {
@Schema(description = "지붕index 번호")
private String roofIndex;
@Schema(description = "작업폭")
private String workingWidth;
}