任务1470【 1470 504 北京麦格纳-采购收货--新增扫描二维码组件】

任务1467【1467 506 北京麦格纳-推荐入库-新增推荐动态库位组件】
yun-zuoyi
puxiao.liao 5 years ago
parent 628b0ee081
commit 4c199ce8ba

@ -1,5 +1,6 @@
package cn.estsh.i3plus.pojo.wms.bean;
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
@ -47,6 +48,7 @@ public class WmsLocate extends BaseBean {
*/
@Column(name = "LOCATE_TYPE")
@ApiParam(value = "库位类型")
@AnnoOutputColumn(refClass = WmsEnumUtil.LOCATE_TYPE.class, refForeignKey = "value", value = "description")
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "LOCATE_TYPE")
private Integer locateType;
@ -192,6 +194,14 @@ public class WmsLocate extends BaseBean {
this.destBoxQty = destBoxQty;
}
public WmsLocate(String locateNo,Integer destBoxQty, Integer y, Integer x, Integer z) {
this.locateNo = locateNo;
this.destBoxQty = destBoxQty;
this.y = y;
this.x = x;
this.z = z;
}
public WmsLocate(Integer boxQty , Double partQty,String locateNo){
this.boxQty=boxQty;
this.partQty=partQty;

@ -48,4 +48,11 @@ public class GenerateLocateRule {
*
*/
private String partNo;
/**
*
*/
private boolean orderByAxle;
}

Loading…
Cancel
Save