dongke 1 год назад
Родитель
Сommit
b7b060957f

+ 1 - 0
src/main/java/com/dk/mdm/mapper/common/CommonMapper.xml

@@ -489,6 +489,7 @@
         tmgs.price_purchase    as "pricePurchase",
         tmgs.price_standard    as "priceStandard",
         tmgs.price_wholesale   as "priceWholesale",
+        tmgs.price_other   as "priceOther",
         tmgs.price_limited     as "priceLimited",
         tmgs.sku_images        as "skuImages",
         tmgs.remarks,

+ 2 - 1
src/main/java/com/dk/mdm/mapper/ivt/InventoryMapper.xml

@@ -69,7 +69,7 @@
         <result column="flg_sub_unit" property="flgSubUnit"/>
         <result column="seriesName" property="seriesName"/>
         <result column="catName" property="catName"/>
-
+        <result column="price_other" property="priceOther"/>
         <result column="sku_images" property="skuImages" typeHandler="JsonTypeHandler"/>
 
     </resultMap>
@@ -155,6 +155,7 @@
         ,tmgs.price_purchase
         ,tmgs.price_standard
         ,tmgs.price_wholesale
+        ,tmgs.price_other
         ,tmgs.price_limited
         ,tmgs.sku_images
         ,tmgs.unit_id

+ 6 - 1
src/main/java/com/dk/mdm/model/response/ivt/InventoryResponse.java

@@ -205,7 +205,12 @@ public class InventoryResponse {
     @ApiModelProperty(value = "商品系列")
     private String seriesName;
 
-
+    /**
+     * 批发价
+     */
+    @Excel(name = "其他价格")
+    @ApiModelProperty(value = "其他价格")
+    private BigDecimal priceOther;
     /**
      * 采购价
      */