|
|
|
@ -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")
|
|
|
|
@ -244,18 +244,18 @@ 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 Double getLcWidthVal() {
|
|
|
|
|
return this.lcWidth == null ? 0 : this.lcWidth.doubleValue();
|
|
|
|
|
|
|
|
|
|
public Integer getLcLengthVal() {
|
|
|
|
|
return this.lcLength == null ? 0 : this.lcLength.intValue();
|
|
|
|
|
}
|
|
|
|
|
public Double getLcHeightVal() {
|
|
|
|
|
return this.lcHeight == null ? 0 : this.lcHeight.doubleValue();
|
|
|
|
|
public Integer getLcWidthVal() {
|
|
|
|
|
return this.lcWidth == null ? 0 : this.lcWidth.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getFrequencyVal() {
|
|
|
|
|
return this.frequency == null ? 0 : this.frequency.intValue();
|
|
|
|
|
public Integer getLcHeightVal() {
|
|
|
|
|
return this.lcHeight == null ? 0 : this.lcHeight.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getXVal() {
|
|
|
|
|