|
|
|
@ -98,6 +98,10 @@ public class MesPackage extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam("客户代码")
|
|
|
|
|
private String custCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IN_LOCATION_TIME")
|
|
|
|
|
@ApiParam("入库时间")
|
|
|
|
|
private String inLocationTime;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("封箱状态")
|
|
|
|
|
private String sealStatus;
|
|
|
|
@ -140,6 +144,10 @@ public class MesPackage extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam("目标库位代码")
|
|
|
|
|
private String destLocationCode;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("不良处理类型")
|
|
|
|
|
private String defectActionType;
|
|
|
|
|
|
|
|
|
|
public MesPackage() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -150,4 +158,13 @@ public class MesPackage extends BaseBean implements Serializable {
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.packSpecQty = packSpecQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MesPackage(String partNo, String partNameRdd,String packageNo, Double qty, String defectActionType, String createDatetime) {
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.partNameRdd = partNameRdd;
|
|
|
|
|
this.packageNo = packageNo;
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.defectActionType = defectActionType;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|