重写库位get方法

yun-zuoyi
jimmy 6 years ago
parent 94f588cfdb
commit 871fae62ec

@ -94,4 +94,20 @@ public class WmsLocate extends BaseBean {
@Column(name="PART_QTY")
@ApiParam(value ="零件数", example = "-1")
private Integer partQty;
public Integer getMaxPackageQty() {
return this.maxPackageQty == null ? 0 : this.maxPackageQty;
}
public Integer getMaxPartQty() {
return this.maxPartQty == null ? 0 : this.maxPartQty;
}
public Integer getBoxQty() {
return this.boxQty == null ? 0 : this.boxQty;
}
public Integer getPartQty() {
return this.partQty == null ? 0 : this.partQty;
}
}

Loading…
Cancel
Save