|
|
|
@ -42,7 +42,7 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "ORDER_STATUS")
|
|
|
|
|
@ApiParam(value = "状态", example = "0")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer orderStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "REMARK")
|
|
|
|
@ -58,7 +58,7 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
@ApiParam(value = "错误信息")
|
|
|
|
|
private String errorMessage;
|
|
|
|
|
|
|
|
|
|
@Column(name="IS_URGENT")
|
|
|
|
|
@Column(name = "IS_URGENT")
|
|
|
|
|
@ApiParam(value = "是否紧急", example = "0")
|
|
|
|
|
public Integer isUrgent;
|
|
|
|
|
|
|
|
|
@ -68,7 +68,7 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name = "BUSI_TYPE_CODE")
|
|
|
|
|
@ApiParam(value = "业务类型编码")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.OUT_MOVEMENT_BUSI_TYPE.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.OUT_MOVEMENT_BUSI_TYPE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer busiTypeCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "REF_ORDER_NO")
|
|
|
|
@ -81,7 +81,7 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer itemStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
@ -140,7 +140,7 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
@ApiParam("交易类型名称")
|
|
|
|
|
private String transTypeName;
|
|
|
|
|
|
|
|
|
|
@Column(name="FIX_ID")
|
|
|
|
|
@Column(name = "FIX_ID")
|
|
|
|
|
@ApiParam(value = "设备编号")
|
|
|
|
|
public String fixId;
|
|
|
|
|
|
|
|
|
@ -164,16 +164,17 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
return isSnapshot == null ? 0 : isSnapshot.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsMoveMaster(){};
|
|
|
|
|
public WmsMoveMaster() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsMoveMaster(String orderNo, Integer orderStatus, String transTypeCode, String errorMessage,
|
|
|
|
|
Integer isUrgent,String carNo, Integer busiTypeCode, String refOrderNo, String refSrc,String partNo, Integer itemStatus,String remark,
|
|
|
|
|
String organizeCode,String createDatetime,String createUser,String modifyDatetime,String modifyUser,String fixId,
|
|
|
|
|
public WmsMoveMaster(String orderNo, Integer orderStatus, String transTypeCode, String errorMessage,
|
|
|
|
|
Integer isUrgent, String carNo, Integer busiTypeCode, String refOrderNo, String refSrc, String partNo, Integer itemStatus, String remark,
|
|
|
|
|
String organizeCode, String createDatetime, String createUser, String modifyDatetime, String modifyUser, String fixId,
|
|
|
|
|
Double sumTranQty) {
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.orderStatus = orderStatus;
|
|
|
|
|
this.remark = remark;
|
|
|
|
|
this.isUrgent=isUrgent;
|
|
|
|
|
this.isUrgent = isUrgent;
|
|
|
|
|
this.transTypeCode = transTypeCode;
|
|
|
|
|
this.errorMessage = errorMessage;
|
|
|
|
|
this.busiTypeCode = busiTypeCode;
|
|
|
|
@ -182,18 +183,18 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
this.refOrderNo = refOrderNo;
|
|
|
|
|
this.carNo = carNo;
|
|
|
|
|
this.refSrc = refSrc;
|
|
|
|
|
this.organizeCode =organizeCode;
|
|
|
|
|
this.createDatetime= createDatetime;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.modifyDatetime =modifyDatetime;
|
|
|
|
|
this.modifyUser =modifyUser;
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.fixId = fixId;
|
|
|
|
|
this.transQty = sumTranQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsMoveMaster(Long id,String orderNo,String organizeCode,String partNo,String partNameRdd,String transTypeCode,String transTypeName,Integer itemStatus,
|
|
|
|
|
String unit,String srcWhNo,String srcZoneNo,String destWhNo,String destZoneNo,Double transQty, Double rejectQty,String fixId,Integer busiTypeCode,String refSrc,
|
|
|
|
|
String createDatetime,String createUser,String modifyUser,String modifyDatetime) {
|
|
|
|
|
public WmsMoveMaster(Long id, String orderNo, String organizeCode, String partNo, String partNameRdd, String transTypeCode, String transTypeName, Integer itemStatus,
|
|
|
|
|
String unit, String srcWhNo, String srcZoneNo, String destWhNo, String destZoneNo, Double transQty, Double rejectQty, String fixId, Integer busiTypeCode, String refSrc,
|
|
|
|
|
String createDatetime, String createUser, String modifyUser, String modifyDatetime) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
@ -212,16 +213,17 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
|
this.fixId = fixId;
|
|
|
|
|
this.busiTypeCode = busiTypeCode;
|
|
|
|
|
this.refSrc = refSrc;
|
|
|
|
|
this.createDatetime= createDatetime;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.modifyUser =modifyUser;
|
|
|
|
|
this.modifyDatetime =modifyDatetime;
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getTransQty(){
|
|
|
|
|
public Double getTransQty() {
|
|
|
|
|
return this.transQty == null ? 0 : this.transQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
public int getBusiTypeCodeVal(){
|
|
|
|
|
|
|
|
|
|
public int getBusiTypeCodeVal() {
|
|
|
|
|
return this.busiTypeCode == null ? 0 : this.busiTypeCode.intValue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|