|
|
|
@ -178,7 +178,7 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "移动频次")
|
|
|
|
|
private Integer frequency;
|
|
|
|
|
private Long frequency;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "库龄")
|
|
|
|
@ -197,7 +197,8 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
this.partQty=partQty;
|
|
|
|
|
this.locateNo=locateNo;
|
|
|
|
|
}
|
|
|
|
|
public WmsLocate(String locateNo,Integer frequency,String organizeCode,
|
|
|
|
|
//3D仓库-库位移动频率热力图
|
|
|
|
|
public WmsLocate(String locateNo,Long frequency,String organizeCode,
|
|
|
|
|
String whNo,String zoneNo,String furnitureNo,
|
|
|
|
|
Integer x,Integer y,Integer z){
|
|
|
|
|
this.locateNo=locateNo;
|
|
|
|
@ -210,6 +211,7 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
this.y=y;
|
|
|
|
|
this.z=z;
|
|
|
|
|
}
|
|
|
|
|
//3D仓库-库龄热力图
|
|
|
|
|
public WmsLocate(String locateNo,String age,String organizeCode,
|
|
|
|
|
String whNo,String zoneNo,String furnitureNo,
|
|
|
|
|
Integer x,Integer y,Integer z){
|
|
|
|
@ -244,8 +246,8 @@ public class WmsLocate extends BaseBean {
|
|
|
|
|
return this.locateType== null ? 0 : this.locateType.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getFrequencyVal() {
|
|
|
|
|
return this.frequency == null ? 0 : this.frequency.intValue();
|
|
|
|
|
public Long getFrequencyVal() {
|
|
|
|
|
return this.frequency == null ? 0 : this.frequency.longValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getLcLengthVal() {
|
|
|
|
|