|
|
|
@ -8,10 +8,7 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -26,7 +23,10 @@ import java.util.List;
|
|
|
|
|
@DynamicInsert
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Table(name = "WMS_TASK")
|
|
|
|
|
@Table(name = "WMS_TASK",indexes = {
|
|
|
|
|
@Index(columnList = "TASK_STATUS"),
|
|
|
|
|
@Index(columnList = "TRANS_TYPE_CODE")
|
|
|
|
|
})
|
|
|
|
|
@Api("作业任务表")
|
|
|
|
|
public class WmsTaskInfo extends BaseBean {
|
|
|
|
|
|
|
|
|
|