From 558d8b9b5c0c619d6a2c252e37390249938341ae Mon Sep 17 00:00:00 2001 From: Daseul Kim Date: Thu, 16 Jan 2025 15:48:38 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20PCS=20=EC=8B=9C=EB=A6=AC=EC=A6=88?= =?UTF-8?q?=20=EC=95=84=EC=9D=B4=ED=85=9C=20=EB=AA=A9=EB=A1=9D=20=EC=A1=B0?= =?UTF-8?q?=ED=9A=8C=20api=20=EC=9D=91=EB=8B=B5=20=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EC=9D=BC=EB=B6=80=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pcs/series/ApiPcsSeriesItemResponse.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/series/ApiPcsSeriesItemResponse.java b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/series/ApiPcsSeriesItemResponse.java index c23003f7..8176e003 100644 --- a/src/main/java/com/interplug/qcast/biz/master/dto/pcs/series/ApiPcsSeriesItemResponse.java +++ b/src/main/java/com/interplug/qcast/biz/master/dto/pcs/series/ApiPcsSeriesItemResponse.java @@ -47,6 +47,24 @@ public class ApiPcsSeriesItemResponse { @Schema(description = "회로수(최대병렬수)") 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 = "표준매수(모듈표준매수)") public String moduleStdQty;