监控台模拟数据+不同库存数量接口修改

yun-zuoyi
gragon.xu 6 years ago
parent 21ef38428c
commit 6b25e77793

@ -128,4 +128,18 @@ public class WmsStockQuan extends BaseBean {
public Double getLockQty() {
return this.lockQty == null ? 0 : this.lockQty;
}
public WmsStockQuan() {
}
public WmsStockQuan(Double qty, Double failQty, Double holdQty, Double qcQty, Double rinQty, Double freezeQty, Double consignQty, Double lockQty) {
this.qty = qty;
this.failQty = failQty;
this.holdQty = holdQty;
this.qcQty = qcQty;
this.rinQty = rinQty;
this.freezeQty = freezeQty;
this.consignQty = consignQty;
this.lockQty = lockQty;
}
}

Loading…
Cancel
Save