북면 모듈 설치 여부 컬럼 추가

This commit is contained in:
hyojun.choi 2026-01-07 17:00:33 +09:00
parent b19e7298c1
commit 02f3c9549f
2 changed files with 7 additions and 0 deletions

View File

@ -26,6 +26,10 @@ public class ApiPcsRoofSurfaceRequest {
@NotNull @NotNull
private String roofSurfaceNorthYn; private String roofSurfaceNorthYn;
@Schema(description = "북면모듈 설치여부")
@NotNull
private String roofSurfaceNorthModuleYn;
@Schema(description = "모듈아이템 List(도면에 설치된 모듈)") @Schema(description = "모듈아이템 List(도면에 설치된 모듈)")
@NotNull @NotNull
private List<ApiPcsModuleItemIdRequest> moduleList; private List<ApiPcsModuleItemIdRequest> moduleList;

View File

@ -22,6 +22,9 @@ public class ApiPcsSerQtyRoofSurfaceDto {
@Schema(description = "북면 여부") @Schema(description = "북면 여부")
private String roofSurfaceNorthYn; private String roofSurfaceNorthYn;
@Schema(description = "북면모듈 설치여부")
private String roofSurfaceNorthModuleYn;
@Schema(description = "모듈아이템 List(도면에 설치된 모듈)") @Schema(description = "모듈아이템 List(도면에 설치된 모듈)")
private List<ApiPcsSerQtyRoofSurfaceModuleDto> moduleList; private List<ApiPcsSerQtyRoofSurfaceModuleDto> moduleList;
} }