Compare commits

..

5 Commits

Author SHA1 Message Date
b3c25afb19 Merge pull request 'dev' (#255) from dev into prd-deploy
Reviewed-on: #255
2025-12-02 13:36:00 +09:00
1bbac0ed6b pcsTpCd 추가 2025-12-02 12:28:28 +09:00
fa367debb2 북면 여부 추가 2025-12-02 11:36:13 +09:00
4b0d635957 북면 여부 추가 2025-12-02 11:35:43 +09:00
215d587390 API 컬럼 추가 2025-12-02 10:59:33 +09:00
4 changed files with 15 additions and 0 deletions

View File

@ -23,4 +23,7 @@ public class ApiPcsItemRequest {
@Schema(description = "선택한직렬매수(적용직렬매수)", maxLength = 10) @Schema(description = "선택한직렬매수(적용직렬매수)", maxLength = 10)
private Integer applySerQty; private Integer applySerQty;
@Schema(description = "선택한병렬매수(적용병렬매수)", maxLength = 10)
private Integer applyParalQty;
} }

View File

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

View File

@ -19,6 +19,9 @@ public class ApiPcsSerQtyRoofSurfaceDto {
@Schema(description = "촌수(경사도)", maxLength = 10) @Schema(description = "촌수(경사도)", maxLength = 10)
private Double roofSurfaceIncl; private Double roofSurfaceIncl;
@Schema(description = "북면 여부")
private String roofSurfaceNorthYn;
@Schema(description = "모듈아이템 List(도면에 설치된 모듈)") @Schema(description = "모듈아이템 List(도면에 설치된 모듈)")
private List<ApiPcsSerQtyRoofSurfaceModuleDto> moduleList; private List<ApiPcsSerQtyRoofSurfaceModuleDto> moduleList;
} }

View File

@ -70,4 +70,9 @@ public class ApiPcsSeriesItemResponse {
@Schema(description = "최대매수(모듈최대매수)") @Schema(description = "최대매수(모듈최대매수)")
public String moduleMaxQty; public String moduleMaxQty;
@Schema(description = "pcs의 타입(실내집중형, 야외집중형 등)")
public String pcsTpCd;
} }