|
|
|
@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 库位表
|
|
|
|
@ -96,6 +97,11 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
@ApiParam(value = "零件数", example = "-1")
|
|
|
|
|
private Double partQty;
|
|
|
|
|
|
|
|
|
|
// 导入用
|
|
|
|
|
@ApiParam(value = "工厂")
|
|
|
|
|
@Transient
|
|
|
|
|
private String factory;
|
|
|
|
|
|
|
|
|
|
public Integer getMaxPackageQty() {
|
|
|
|
|
return this.maxPackageQty == null ? 0 : this.maxPackageQty.intValue();
|
|
|
|
|
}
|
|
|
|
|