From 02f3c9549ff918e6a8178d7579484b7c09999e59 Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Wed, 7 Jan 2026 17:00:33 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B6=81=EB=A9=B4=20=EB=AA=A8=EB=93=88=20?= =?UTF-8?q?=EC=84=A4=EC=B9=98=20=EC=97=AC=EB=B6=80=20=EC=BB=AC=EB=9F=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qcast/biz/master/dto/pcs/ApiPcsRoofSurfaceRequest.java | 4 ++++ .../qcast/biz/master/dto/pcs/ApiPcsSerQtyRoofSurfaceDto.java | 3 +++ 2 files changed, 7 insertions(+) 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 6a0fd7b0..cd11703c 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 @@ -26,6 +26,10 @@ public class ApiPcsRoofSurfaceRequest { @NotNull private String roofSurfaceNorthYn; + @Schema(description = "북면모듈 설치여부") + @NotNull + private String roofSurfaceNorthModuleYn; + @Schema(description = "모듈아이템 List(도면에 설치된 모듈)") @NotNull private List moduleList; diff --git a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsSerQtyRoofSurfaceDto.java b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsSerQtyRoofSurfaceDto.java index 7aceec60..8d83f3b3 100644 --- a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsSerQtyRoofSurfaceDto.java +++ b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/ApiPcsSerQtyRoofSurfaceDto.java @@ -22,6 +22,9 @@ public class ApiPcsSerQtyRoofSurfaceDto { @Schema(description = "북면 여부") private String roofSurfaceNorthYn; + @Schema(description = "북면모듈 설치여부") + private String roofSurfaceNorthModuleYn; + @Schema(description = "모듈아이템 List(도면에 설치된 모듈)") private List moduleList; }