|
|
|
@ -13,6 +13,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description :
|
|
|
|
@ -84,6 +85,18 @@ public class WmsBom extends BaseBean {
|
|
|
|
|
@Column(name = "EFF_END_TIME")
|
|
|
|
|
private String effEndTime;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "目标存储区")
|
|
|
|
|
@Transient
|
|
|
|
|
public String destZoneNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "交易类型")
|
|
|
|
|
@Transient
|
|
|
|
|
public String transTypeCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "线路代码")
|
|
|
|
|
@Transient
|
|
|
|
|
public String routingCode;
|
|
|
|
|
|
|
|
|
|
public Double getQty() {
|
|
|
|
|
return this.qty == null ? 0 : this.qty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|