Merge branch 'dev' of gragon.xu/i3plus-pojo into dev

yun-zuoyi
钮海涛 5 years ago committed by nancy.li
commit 2d5de4a29b

@ -65,8 +65,10 @@ public class WmsFurniture extends BaseBean {
public WmsFurniture() { public WmsFurniture() {
} }
public WmsFurniture(String whNo, String zoneNo, String typeCode, String furnitureNo, public WmsFurniture(Long id,String organizeCode, String whNo, String zoneNo, String typeCode, String furnitureNo,
Integer isSaveGoods, String position, Integer storey, Integer fntCol) { Integer isSaveGoods, String position, Integer storey, Integer fntCol) {
this.id = id;
this.organizeCode = organizeCode;
this.whNo = whNo; this.whNo = whNo;
this.zoneNo = zoneNo; this.zoneNo = zoneNo;
this.typeCode = typeCode; this.typeCode = typeCode;

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

@ -545,7 +545,7 @@ public class WmsHqlPack {
DdlPreparedPack.getInPack(StringUtils.join(new ArrayList<String>(Arrays.asList(wmsLocate.getZoneNo().split(","))), ","), "zoneNo", result); DdlPreparedPack.getInPack(StringUtils.join(new ArrayList<String>(Arrays.asList(wmsLocate.getZoneNo().split(","))), ","), "zoneNo", result);
} }
if (wmsLocate.getLocateNoArr() != null) { if (wmsLocate.getLocateNoArr() != null) {
DdlPreparedPack.getInPack(StringUtils.join(wmsLocate.getLocateNoArr()), "", result); DdlPreparedPack.getInPack(StringUtils.join(wmsLocate.getLocateNoArr()), "locateNo", result);
} }
// DdlPreparedPack.getStringEqualPack(wmsLocate.getZoneNo(), "zoneNo", result); // DdlPreparedPack.getStringEqualPack(wmsLocate.getZoneNo(), "zoneNo", result);

Loading…
Cancel
Save