feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
3 changed files with 7 additions and 2 deletions
Showing only changes of commit 1ff3916b81 - Show all commits

View File

@ -196,7 +196,8 @@ public class MasterController {
req.getInclCd(), req.getInclCd(),
req.getConstTp(), req.getConstTp(),
req.getMixMatlNo(), req.getMixMatlNo(),
req.getRoofPitch()); req.getRoofPitch(),
req.getWorkingWidth());
ApiTrestleDetailResponse data = response.getData(); ApiTrestleDetailResponse data = response.getData();
data.setRoofIndex(req.getRoofIndex()); // roofIndex 추가하기 위함 data.setRoofIndex(req.getRoofIndex()); // roofIndex 추가하기 위함

View File

@ -74,7 +74,8 @@ public interface MasterService {
@RequestParam String inclCd, @RequestParam String inclCd,
@RequestParam String constTp, @RequestParam String constTp,
@RequestParam(required = false) Integer mixMatlNo, @RequestParam(required = false) Integer mixMatlNo,
@RequestParam(required = false) Integer roofPitch); @RequestParam(required = false) Integer roofPitch,
@RequestParam(required = false) String workingWidth);
// PCS Maker, 시리즈 목록 조회 // PCS Maker, 시리즈 목록 조회
@GetMapping("/pcsMakerList") @GetMapping("/pcsMakerList")

View File

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