|
|
@ -3,7 +3,6 @@ package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
|
|
|
import cn.estsh.i3plus.pojo.base.util.StringUtil;
|
|
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
@ -11,7 +10,12 @@ import lombok.EqualsAndHashCode;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
|
|
|
import javax.persistence.Lob;
|
|
|
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @Description : 库存移动单主表信息
|
|
|
|
* @Description : 库存移动单主表信息
|
|
|
@ -235,6 +239,28 @@ public class WmsMoveMaster extends BaseBean {
|
|
|
|
this.orderStatus = orderStatus;
|
|
|
|
this.orderStatus = orderStatus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsMoveMaster(String orderNo, Integer orderStatus, String transTypeCode, String errorMessage,
|
|
|
|
|
|
|
|
Integer isUrgent, String carNo, Integer busiTypeCode, String refOrderNo, String remark,
|
|
|
|
|
|
|
|
String organizeCode, String createDatetime, String createUser, String modifyDatetime, String modifyUser, String fixId
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
|
|
|
this.orderStatus = orderStatus;
|
|
|
|
|
|
|
|
this.remark = remark;
|
|
|
|
|
|
|
|
this.isUrgent = isUrgent;
|
|
|
|
|
|
|
|
this.transTypeCode = transTypeCode;
|
|
|
|
|
|
|
|
this.errorMessage = errorMessage;
|
|
|
|
|
|
|
|
this.busiTypeCode = busiTypeCode;
|
|
|
|
|
|
|
|
this.refOrderNo = refOrderNo;
|
|
|
|
|
|
|
|
this.carNo = carNo;
|
|
|
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
|
|
|
this.fixId = fixId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Double getTransQty() {
|
|
|
|
public Double getTransQty() {
|
|
|
|
return this.transQty == null ? 0 : this.transQty.doubleValue();
|
|
|
|
return this.transQty == null ? 0 : this.transQty.doubleValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|