PCS 접속함 응답/요청 DTO에 moduleTpCd 필드 추가

This commit is contained in:
ysCha 2026-04-22 09:58:30 +09:00
parent 5b9af55d31
commit 475733d22b
2 changed files with 9 additions and 0 deletions

View File

@ -26,4 +26,7 @@ public class ApiPcsConnResponse {
@Schema(description = "승압병렬수", maxLength = 10) @Schema(description = "승압병렬수", maxLength = 10)
private Integer vStuParalCnt; private Integer vStuParalCnt;
@Schema(description = "모듈타입코드", maxLength = 20)
private String moduleTpCd;
} }

View File

@ -13,4 +13,10 @@ public class ApiQuotationItemPcsConnectionRequest {
@Schema(description = "연결함(접속함)아이템ID") @Schema(description = "연결함(접속함)아이템ID")
@NotNull @NotNull
public String connItemId; public String connItemId;
@Schema(description = "병렬수(회로수)")
public Integer connMaxParalCnt;
@Schema(description = "모듈타입코드")
public String moduleTpCd;
} }