|
|
|
@ -9,10 +9,7 @@ import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -31,7 +28,7 @@ import java.math.BigDecimal;
|
|
|
|
|
@Index(columnList = "ORDER_NO"),
|
|
|
|
|
@Index(columnList = "PART_NO"),
|
|
|
|
|
@Index(columnList = "ITEM_STATUS")
|
|
|
|
|
})
|
|
|
|
|
}, uniqueConstraints = {@UniqueConstraint(columnNames = {"REF_SRC", "ITEM", "TRANS_TYPE_CODE_RDD"})})
|
|
|
|
|
@Api("作业任务明细信息")
|
|
|
|
|
public class WmsTaskDetails extends BaseBean {
|
|
|
|
|
|
|
|
|
@ -143,6 +140,10 @@ public class WmsTaskDetails extends BaseBean {
|
|
|
|
|
@ApiParam("业务类型描述")
|
|
|
|
|
public String busiTypeDesc;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TRANS_TYPE_CODE_RDD")
|
|
|
|
|
@ApiParam("交易类型")
|
|
|
|
|
public String transTypeCodeRdd;
|
|
|
|
|
|
|
|
|
|
public Double getQty() {
|
|
|
|
|
return this.qty == null ? 0 : this.qty;
|
|
|
|
|
}
|
|
|
|
|