Przeglądaj źródła

품목정보 항목 추가

dwkim 2 lat temu
rodzic
commit
7646457796

+ 4 - 0
src/main/java/com/oqpo/api/web/dto/response/stinfo/item/ItemInfoResponse.java

@@ -24,6 +24,9 @@ public class ItemInfoResponse {
24 24
     @ApiModelProperty(value = "품목아이디")
25 25
     private String itemId;
26 26
 
27
+    @ApiModelProperty(value = "품목명")
28
+    private String itemNm;
29
+
27 30
     @ApiModelProperty(value = "구매단위")
28 31
     private String pchUnit;
29 32
 
@@ -183,6 +186,7 @@ public class ItemInfoResponse {
183 186
         return ItemInfoResponse.builder()
184 187
                 .brandId(entity.getBrandId())
185 188
                 .itemId(entity.getItemId())
189
+                .itemNm(entity.getItemNm())
186 190
                 .pchUnit(entity.getPchUnit() == null ? "" :entity.getPchUnit())
187 191
                 .pchUnitNm(entity.getPchUnitNm() == null ? "" :entity.getPchUnitNm())
188 192
                 .weight(entity.getWeight() == null ? 0 :entity.getWeight())