|
|
|
@ -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;
|
|
|
|
@ -90,4 +92,95 @@ public class WmsTransSn extends BaseBean {
|
|
|
|
|
@Column(name = "SN_STATUS")
|
|
|
|
|
@ApiParam(value = "条码状态", example = "0")
|
|
|
|
|
private Integer snStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TRANS_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "交易数量")
|
|
|
|
|
public Double transQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_PART_NO")
|
|
|
|
|
@ApiParam("源物料编码")
|
|
|
|
|
public String srcPartNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_PART_NO")
|
|
|
|
|
@ApiParam("新物料编码")
|
|
|
|
|
public String newPartNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "源数量")
|
|
|
|
|
public Double srcQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_QTY", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ColumnDefault("0")
|
|
|
|
|
@ApiParam(value = "新数量")
|
|
|
|
|
public Double newQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_SN_STATUS")
|
|
|
|
|
@ApiParam(value = "源条码状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class)
|
|
|
|
|
public Integer srcSnStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_SN_STATUS")
|
|
|
|
|
@ApiParam(value = "目的条码状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class)
|
|
|
|
|
public Integer newSnStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_QC_STATUS")
|
|
|
|
|
@ApiParam(value = "源质量状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_QC_STATUS.class)
|
|
|
|
|
public Integer srcQcStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_QC_STATUS")
|
|
|
|
|
@ApiParam(value = "目的质量状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_QC_STATUS.class)
|
|
|
|
|
public Integer descQcStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_WH_NO")
|
|
|
|
|
@ApiParam("源仓库代码")
|
|
|
|
|
public String srcWhNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_WH_NO")
|
|
|
|
|
@ApiParam("新仓库代码")
|
|
|
|
|
public String newWhNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_ZONE_NO")
|
|
|
|
|
@ApiParam("源存储区代码")
|
|
|
|
|
public String srcZoneNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_ZONE_NO")
|
|
|
|
|
@ApiParam("新存储区代码")
|
|
|
|
|
public String newZoneNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_LOCATE_NO")
|
|
|
|
|
@ApiParam("新库位代码")
|
|
|
|
|
public String newLocateNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_LOCATE_NO")
|
|
|
|
|
@ApiParam("源库位代码")
|
|
|
|
|
public String srcLocateNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_ORGANIZE_CODE")
|
|
|
|
|
@ApiParam("源工厂代码")
|
|
|
|
|
public String srcOrganizeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_ORGANIZE_CODE")
|
|
|
|
|
@ApiParam("新工厂代码")
|
|
|
|
|
public String newOrganizeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_IS_DELETED")
|
|
|
|
|
@ApiParam("旧软删标识")
|
|
|
|
|
public Integer srcIsDeleted;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_IS_DELETED")
|
|
|
|
|
@ApiParam("新软删标识")
|
|
|
|
|
public Integer newIsDeleted;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_IS_VALID")
|
|
|
|
|
@ApiParam("旧有效标识")
|
|
|
|
|
public Integer srcIsValid;
|
|
|
|
|
|
|
|
|
|
@Column(name = "NEW_IS_VALID")
|
|
|
|
|
@ApiParam("新有效标识")
|
|
|
|
|
public Integer newIsValid;
|
|
|
|
|
}
|
|
|
|
|