|
|
|
@ -428,6 +428,35 @@ public class WmsStockSn extends BaseBean {
|
|
|
|
|
@ApiParam("BH类型")
|
|
|
|
|
private Integer bhType;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("处理状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.BH_WORK_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer workStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("是否合格")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer isQualified;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("返修状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.REWORK_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer reworkStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("返修结果")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer reworkResult;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("挑选状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.REWORK_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer pickStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("挑选状态")
|
|
|
|
|
public Integer pickResult;
|
|
|
|
|
|
|
|
|
|
public WmsStockSn() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -647,6 +676,22 @@ public class WmsStockSn extends BaseBean {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsStockSn(String organizeCode, String batchNo, Integer bhType, String locateNo, String partNo,
|
|
|
|
|
String partNameRdd, String workCenterCode, String createUser, String createDatetime,
|
|
|
|
|
String modifyUser, String modifyDatetime) {
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.batchNo = batchNo;
|
|
|
|
|
this.bhType = bhType;
|
|
|
|
|
this.locateNo = locateNo;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.partNameRdd = partNameRdd;
|
|
|
|
|
this.workCenterCode = workCenterCode;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|