dev #299

Merged
ysCha merged 5 commits from dev into prd-deploy 2026-01-09 09:42:56 +09:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit 10b0f3136c - Show all commits

View File

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

View File

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