|
|
|
@ -102,10 +102,21 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
@Transient
|
|
|
|
|
private String factory;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "入库箱数", example = "-1")
|
|
|
|
|
private Integer destBoxQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ENCRYPTION_NO")
|
|
|
|
|
@ApiParam(value = "加密编码")
|
|
|
|
|
private String encryptionNo;
|
|
|
|
|
|
|
|
|
|
public WmsLocate() {
|
|
|
|
|
}
|
|
|
|
|
public WmsLocate(String locateNo,Integer destBoxQty) {
|
|
|
|
|
this.locateNo = locateNo;
|
|
|
|
|
this.destBoxQty = destBoxQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getMaxPackageQty() {
|
|
|
|
|
return this.maxPackageQty == null ? 0 : this.maxPackageQty.intValue();
|
|
|
|
|
}
|
|
|
|
|