Merge remote-tracking branch 'remotes/origin/dev' into test

yun-zuoyi
Silliter 6 years ago
commit b0cb1b795b

@ -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