refactor: PCS 시리즈 아이템 목록 조회 api, 견적서 아이템 조회 api 의 dto 필드 타입을 double로 변경

This commit is contained in:
Daseul Kim 2025-02-04 15:29:46 +09:00
parent 69d69e1d69
commit f1a30a6840
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public class ApiPcsSeriesItemResponse {
public String goodsNo;
@Schema(description = "정격출력(kw)")
public Integer ratedCapa;
public Double ratedCapa;
@Schema(description = "회로수(최대병렬수)")
public Integer paralMax;

View File

@ -19,7 +19,7 @@ public class ApiQuotationItemRackRequest {
@Schema(description = "랙 단 수")
@NotNull
public Integer rackRows;
public Double rackRows;
@Schema(description = "랙 지지금구 수")
@NotNull