|
|
|
@ -77,7 +77,7 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "MAX_PART_QTY")
|
|
|
|
|
@ApiParam(value = "最大零件数量", example = "-1")
|
|
|
|
|
private Integer maxPartQty;
|
|
|
|
|
private Double maxPartQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "STOCK_UNIT")
|
|
|
|
|
@ApiParam(value = "存放单位")
|
|
|
|
@ -99,7 +99,7 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
return this.maxPackageQty == null ? 0 : this.maxPackageQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getMaxPartQty() {
|
|
|
|
|
public Double getMaxPartQty() {
|
|
|
|
|
return this.maxPartQty == null ? 0 : this.maxPartQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|