|
|
|
@ -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;
|
|
|
|
@ -66,6 +68,7 @@ public class WmsMoveSn extends BaseBean {
|
|
|
|
|
*/
|
|
|
|
|
@Column(name="ITEM_STATUS")
|
|
|
|
|
@ApiParam(value = "状态", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
public Integer itemStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name="REMARK")
|
|
|
|
@ -129,18 +132,22 @@ public class WmsMoveSn extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name="SRC_QC_STATUS")
|
|
|
|
|
@ApiParam(value = "源质量状态", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_QC_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
public Integer srcQcStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name="SRC_SN_STATUS")
|
|
|
|
|
@ApiParam(value = "源条码状态", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
public Integer srcSnStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name="DEST_QC_STATUS")
|
|
|
|
|
@ApiParam(value = "目的质量状态", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_QC_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
public Integer descQcStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name="DEST_SN_STATUS")
|
|
|
|
|
@ApiParam(value = "目的条码状态", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
public Integer destSnStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name="DATE_CODE")
|
|
|
|
|