From 215d587390bdff0ea952705a26047fa8288678dd Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Tue, 2 Dec 2025 10:59:33 +0900 Subject: [PATCH] =?UTF-8?q?API=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../interplug/qcast/biz/master/dto/pcs/ApiPcsItemRequest.java | 3 +++ .../qcast/biz/master/dto/pcs/ApiPcsRoofSurfaceRequest.java | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsItemRequest.java b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsItemRequest.java index d75c57ca..3ec95b1d 100644 --- a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsItemRequest.java +++ b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsItemRequest.java @@ -23,4 +23,7 @@ public class ApiPcsItemRequest { @Schema(description = "선택한직렬매수(적용직렬매수)", maxLength = 10) private Integer applySerQty; + + @Schema(description = "선택한병렬매수(적용병렬매수)", maxLength = 10) + private Integer applyParalQty; } diff --git a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsRoofSurfaceRequest.java b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsRoofSurfaceRequest.java index 24e3f968..6a0fd7b0 100644 --- a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsRoofSurfaceRequest.java +++ b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsRoofSurfaceRequest.java @@ -22,6 +22,10 @@ public class ApiPcsRoofSurfaceRequest { @NotNull private Double roofSurfaceIncl; + @Schema(description = "북면여부") + @NotNull + private String roofSurfaceNorthYn; + @Schema(description = "모듈아이템 List(도면에 설치된 모듈)") @NotNull private List moduleList;