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