|
|
|
@ -202,6 +202,10 @@ dataSrc ="cn.estsh.i3plus.pojo.wms.bean.WmsZones",
|
|
|
|
|
@ApiParam(value = "库龄")
|
|
|
|
|
private String age;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "库位箱数")
|
|
|
|
|
private Long qty;
|
|
|
|
|
|
|
|
|
|
public WmsLocate() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -252,6 +256,12 @@ dataSrc ="cn.estsh.i3plus.pojo.wms.bean.WmsZones",
|
|
|
|
|
this.z=z;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsLocate(Long qty, Integer status, String zoneNo) {
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.status = status;
|
|
|
|
|
this.zoneNo = zoneNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getMaxPackageQty() {
|
|
|
|
|
return this.maxPackageQty == null ? 0 : this.maxPackageQty.intValue();
|
|
|
|
|
}
|
|
|
|
|