refactor: PCS 시리즈 아이템 목록 조회 api 응답 필드 일부 추가

This commit is contained in:
Daseul Kim 2025-01-16 15:48:38 +09:00
parent 646136206e
commit 558d8b9b5c

View File

@ -47,6 +47,24 @@ public class ApiPcsSeriesItemResponse {
@Schema(description = "회로수(최대병렬수)") @Schema(description = "회로수(최대병렬수)")
public Integer paralMax; public Integer paralMax;
@Schema(description = "최소직렬수")
public Integer serMinQty;
@Schema(description = "표준직렬수")
public Integer serMaxQty;
@Schema(description = "과적직렬수(표준이상)")
public Integer serStdMaxQty;
@Schema(description = "표준직렬수(표준-한랭지)")
public Integer serColdZoneMaxQty;
@Schema(description = "과적직렬수(표준이상-한랭지)")
public Integer serStdColdZoneMaxQty;
@Schema(description = "최소매수(모듈최소매수)")
public Integer moduleMinQty;
@Schema(description = "표준매수(모듈표준매수)") @Schema(description = "표준매수(모듈표준매수)")
public String moduleStdQty; public String moduleStdQty;