Commit 5f4136e5 by 胡懿

入库明细统计增加二维码状态

parent eb1fb03f
...@@ -24,6 +24,7 @@ public class CountStorageInfo extends DataEntity<StorageInfo> { ...@@ -24,6 +24,7 @@ public class CountStorageInfo extends DataEntity<StorageInfo> {
private Warehouse warehouse; // 仓库外键 private Warehouse warehouse; // 仓库外键
private BigDecimal sum; // 单价 private BigDecimal sum; // 单价
private int num; // 数量 private int num; // 数量
private String state; // 入库状态
private String shelvesNames; // 多个货架信息,前端展示使用 private String shelvesNames; // 多个货架信息,前端展示使用
private String warehouseNames; // 多个仓库信息,前端展示使用 private String warehouseNames; // 多个仓库信息,前端展示使用
...@@ -123,4 +124,12 @@ public class CountStorageInfo extends DataEntity<StorageInfo> { ...@@ -123,4 +124,12 @@ public class CountStorageInfo extends DataEntity<StorageInfo> {
public void setWarehouseNames(String warehouseNames) { public void setWarehouseNames(String warehouseNames) {
this.warehouseNames = warehouseNames; this.warehouseNames = warehouseNames;
} }
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment