|
|
|
@ -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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|