瀏覽代碼

供应商-我的商品数据

plf 5 年之前
父節點
當前提交
424a982c0e

+ 6 - 1
base-module/src/main/java/com/caimei/module/base/entity/vo/OrderProductVo.java

@@ -19,7 +19,12 @@ public class OrderProductVo extends CmOrderProduct {
     private Integer shipmentsNum;
 
     /**
-     * 已退数量
+     * 已退数量
      */
     private Integer returnedNum;
+
+    /**
+     * 已取消发货数量
+     */
+    private Integer actualCancelNum;
 }

+ 15 - 0
base-module/src/main/java/com/caimei/module/base/entity/vo/ProductVo.java

@@ -101,4 +101,19 @@ public class ProductVo extends Product {
      */
     private String params;
 
+    /**
+     * 二级分类id
+     */
+    private Integer smallTypeID;
+
+    /**
+     * 三级分类id
+     */
+    private Integer bigTypeID;
+
+    /**
+     * 所在分类名称
+     */
+    private String typeName;
+
 }