更新库容公用方法优化

yun-zuoyi
Silliter 6 years ago
parent 86b4e6a05e
commit 34cadcfb54

@ -96,19 +96,19 @@ public class WmsLocate extends BaseBean {
private Double partQty;
public Integer getMaxPackageQty() {
return this.maxPackageQty == null ? 0 : this.maxPackageQty;
return this.maxPackageQty == null ? 0 : this.maxPackageQty.intValue();
}
public Double getMaxPartQty() {
return this.maxPartQty == null ? 0 : this.maxPartQty;
return this.maxPartQty == null ? 0 : this.maxPartQty.doubleValue();
}
public Integer getBoxQty() {
return this.boxQty == null ? 0 : this.boxQty;
return this.boxQty == null ? 0 : this.boxQty.intValue();
}
public Double getPartQty() {
return this.partQty == null ? 0 : this.partQty;
return this.partQty == null ? 0 : this.partQty.doubleValue();
}
}

Loading…
Cancel
Save