|
|
|
@ -47,7 +47,7 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "LOCATE_TYPE")
|
|
|
|
|
@ApiParam(value = "库位类型")
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, entityName = "LOCATE_TYPE")
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "LOCATE_TYPE")
|
|
|
|
|
private Integer locateType;
|
|
|
|
|
|
|
|
|
|
@Column(name = "WH_NO")
|
|
|
|
@ -82,20 +82,20 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
|
|
|
|
private Integer z;
|
|
|
|
|
|
|
|
|
|
@Column(name = "LC_LENGTH", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@Column(name = "LC_LENGTH")
|
|
|
|
|
@ApiParam(value = "长")
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
|
|
|
|
private Double lcLength;
|
|
|
|
|
private Integer lcLength;
|
|
|
|
|
|
|
|
|
|
@Column(name = "LC_WIDTH", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@Column(name = "LC_WIDTH")
|
|
|
|
|
@ApiParam(value = "宽")
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
|
|
|
|
private Double lcWidth;
|
|
|
|
|
private Integer lcWidth;
|
|
|
|
|
|
|
|
|
|
@Column(name = "LC_HEIGHT", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@Column(name = "LC_HEIGHT")
|
|
|
|
|
@ApiParam(value = "高")
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
|
|
|
|
private Double lcHeight;
|
|
|
|
|
private Integer lcHeight;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEQ")
|
|
|
|
|
@ApiParam(value = "序号", example = "-1")
|
|
|
|
@ -147,6 +147,10 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME, isRequire = 2)
|
|
|
|
|
private String lastCsTime;
|
|
|
|
|
|
|
|
|
|
@Column(name = "POSITION")
|
|
|
|
|
@ApiParam(value = "三维位置")
|
|
|
|
|
private String position;
|
|
|
|
|
|
|
|
|
|
// 导入用
|
|
|
|
|
@ApiParam(value = "工厂")
|
|
|
|
|
@Transient
|
|
|
|
@ -240,18 +244,28 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
return this.locateType== null ? 0 : this.locateType.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getLcLengthVal() {
|
|
|
|
|
return this.lcLength == null ? 0 : this.lcLength.doubleValue();
|
|
|
|
|
public Integer getFrequencyVal() {
|
|
|
|
|
return this.frequency == null ? 0 : this.frequency.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getLcLengthVal() {
|
|
|
|
|
return this.lcLength == null ? 0 : this.lcLength.intValue();
|
|
|
|
|
}
|
|
|
|
|
public Double getLcWidthVal() {
|
|
|
|
|
return this.lcWidth == null ? 0 : this.lcWidth.doubleValue();
|
|
|
|
|
public Integer getLcWidthVal() {
|
|
|
|
|
return this.lcWidth == null ? 0 : this.lcWidth.intValue();
|
|
|
|
|
}
|
|
|
|
|
public Double getLcHeightVal() {
|
|
|
|
|
return this.lcHeight == null ? 0 : this.lcHeight.doubleValue();
|
|
|
|
|
public Integer getLcHeightVal() {
|
|
|
|
|
return this.lcHeight == null ? 0 : this.lcHeight.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getFrequencyVal() {
|
|
|
|
|
return this.frequency == null ? 0 : this.frequency.intValue();
|
|
|
|
|
public Integer getXVal() {
|
|
|
|
|
return this.x == null ? 0 : this.x.intValue();
|
|
|
|
|
}
|
|
|
|
|
public Integer getYVal() {
|
|
|
|
|
return this.y == null ? 0 : this.y.intValue();
|
|
|
|
|
}
|
|
|
|
|
public Integer getZVal() {
|
|
|
|
|
return this.z == null ? 0 : this.z.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|