|
@@ -10,43 +10,44 @@ import java.util.Date;
|
|
|
public class InventoryInfo implements Serializable{
|
|
|
private static final long serialVersionUID = 4067885659182190574L;
|
|
|
private Integer inventoryId;
|
|
|
- private String inventoryProductName;//产品名称
|
|
|
- private String inventoryProductBar;//产品sku
|
|
|
- private Integer inventoryRemainingNum;//库存剩余数量
|
|
|
- private Integer inventoryState;//1.正在使用 2.暂停使用
|
|
|
- private String inventoryDesc;//备注
|
|
|
- private Date inventoryCreateTime;//创建时间
|
|
|
- private Date inventoryUpdateTime;//修改时间
|
|
|
- private Integer inventoryProductColorId;//产品颜色id
|
|
|
- private Integer inventoryGoodProductNum;//良品数量
|
|
|
- private Integer inventoryDefectiveProductNum;//不良品数量
|
|
|
- private String inventoryRecentRecord;//最近记录
|
|
|
- private String productTypeName;//产品类型
|
|
|
- private String productNumber;//产品型号
|
|
|
- private String productAbbreviation;//产品简称
|
|
|
- private String productColorName;//颜色名称
|
|
|
- private Integer inventoryMomentumNum;//待发数量
|
|
|
- private Integer operationType;//操作类型 1出库 2 入库
|
|
|
- private Integer qualityType;//产品质量类型 1良品 2 不良品
|
|
|
- private Integer operationNum;//操作数量
|
|
|
- private Integer productTypeId;//产品类型id
|
|
|
-
|
|
|
- private Integer warehouseId;//仓库ID
|
|
|
- private String warehouseName;//仓库名称
|
|
|
-
|
|
|
- private Integer logType;//类型1.采购 2.发货 3.次品
|
|
|
- private Integer productIsCombination;//是否组合产品 1.否。2是
|
|
|
- /**
|
|
|
- * 是否查询实物库存,如果确定,则不查询仓库的其他产品
|
|
|
- */
|
|
|
+ private String inventoryProductName; //产品名称
|
|
|
+ private String inventoryProductBar; //产品sku
|
|
|
+ private Integer inventoryRemainingNum; //库存剩余数量
|
|
|
+ private Integer inventoryState; //1.正在使用 2.暂停使用
|
|
|
+ private String inventoryDesc; //备注
|
|
|
+ private Date inventoryCreateTime; //创建时间
|
|
|
+ private Date inventoryUpdateTime; //修改时间
|
|
|
+ private Integer inventoryProductColorId; //产品颜色id
|
|
|
+ private Integer inventoryGoodProductNum; //良品数量
|
|
|
+ private Integer inventoryDefectiveProductNum; //不良品数量
|
|
|
+ private String inventoryRecentRecord; //最近记录
|
|
|
+ private String productTypeName; //产品类型
|
|
|
+ private String productNumber; //产品型号
|
|
|
+ private String productAbbreviation; //产品简称
|
|
|
+ private String productColorName; //颜色名称
|
|
|
+ private Integer inventoryMomentumNum; //待发数量
|
|
|
+ private Integer operationType; //操作类型 1出库 2 入库
|
|
|
+ private Integer qualityType; //产品质量类型 1良品 2 不良品
|
|
|
+ private Integer operationNum; //操作数量
|
|
|
+ private Integer productTypeId; //产品类型id
|
|
|
+ private Integer warehouseId; //仓库ID
|
|
|
+ private String warehouseName; //仓库名称
|
|
|
+ private Integer logType; //类型1.采购 2.发货 3.次品
|
|
|
+ private Integer productIsCombination; //是否组合产品 1.否。2是
|
|
|
+ /** 是否查询实物库存,如果确定,则不查询仓库的其他产品 */
|
|
|
private Integer isEntityInventory;
|
|
|
-
|
|
|
- /**
|
|
|
- * 接收前端传递的事务库存id
|
|
|
- */
|
|
|
+ /** 接收前端传递的事务库存id */
|
|
|
private Integer[] ids;
|
|
|
-
|
|
|
private String inventoryIDS;
|
|
|
+ private InventoryLog inventoryLog; // 变动库存时生成的库存变动记录
|
|
|
+
|
|
|
+ public InventoryLog getInventoryLog() {
|
|
|
+ return inventoryLog;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInventoryLog(InventoryLog inventoryLog) {
|
|
|
+ this.inventoryLog = inventoryLog;
|
|
|
+ }
|
|
|
|
|
|
public String getInventoryIDS() {
|
|
|
return inventoryIDS;
|