|
|
|
@ -9,8 +9,13 @@ import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 作业任务明细信息
|
|
|
|
@ -140,6 +145,11 @@ public class WmsTaskDetails extends BaseBean {
|
|
|
|
|
@ApiParam("交易类型")
|
|
|
|
|
public String transTypeCodeRdd;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("工厂代码集合")
|
|
|
|
|
private List<String> organizeCodeList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getQty() {
|
|
|
|
|
return this.qty == null ? 0 : this.qty;
|
|
|
|
|
}
|
|
|
|
|