Browse Source

库存快照

yzc 1 năm trước cách đây
mục cha
commit
92f94ca0a1

+ 55 - 0
hx-wms/src/main/java/com/fjhx/wms/entity/stock/vo/StockSnapshotDetailsVo.java

@@ -4,6 +4,7 @@ import com.fjhx.wms.entity.stock.po.StockSnapshotDetails;
 import lombok.Getter;
 import lombok.Setter;
 
+import java.math.BigDecimal;
 import java.util.List;
 
 /**
@@ -21,4 +22,58 @@ public class StockSnapshotDetailsVo extends StockSnapshotDetails {
     private List<String> productClassifyNameGroup;
     private String productClassifyNames;
 
+
+    /**
+     * 产品名称
+     */
+    private String productName;
+
+    /**
+     * 产品编码
+     */
+    private String productCode;
+
+    /**
+     * 产品编码
+     */
+    private String productCustomCode;
+
+    /**
+     * 产品类型
+     */
+    private String productType;
+
+    /**
+     * 规格型号
+     */
+    private String productSpec;
+
+    /**
+     * 单位
+     */
+    private String productUnit;
+
+    /**
+     * 产品定义
+     */
+    private Integer productDefinition;
+
+    /**
+     * 产品长
+     */
+    private BigDecimal productLength;
+    /**
+     * 产品宽
+     */
+    private BigDecimal productWidth;
+    /**
+     * 产品高
+     */
+    private BigDecimal productHeight;
+
+    /**
+     * 仓库名称
+     */
+    private String warehouseName;
+
 }