|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -67,6 +69,24 @@ public class WmsRoutingRule extends BaseBean {
|
|
|
|
|
@ApiParam(value = "交易类型" , example = "1")
|
|
|
|
|
private String transTypeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DEST_OP_TYPE_CODE")
|
|
|
|
|
@ApiParam(value = "目标作业类型" , example = "2")
|
|
|
|
|
private String destOpTypeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DEST_TRANS_TYPE_CODE")
|
|
|
|
|
@ApiParam(value = "目标交易类型" , example = "1")
|
|
|
|
|
private String destTransTypeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DEST_SN_STATUS")
|
|
|
|
|
@ApiParam(value = "目标条码状态" , example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer destSnStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DEST_QC_STATUS")
|
|
|
|
|
@ApiParam(value = "目标质量状态" , example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_QC_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer destQcStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "MODE_CODE")
|
|
|
|
|
@ApiParam(value = "处理模式(10:生成任务,20:自动操作,30手工操作,40:自动操作 无交易)" , example = "1")
|
|
|
|
|
private Integer modeCode;
|
|
|
|
|