|
|
|
@ -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.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -27,7 +24,13 @@ import java.io.Serializable;
|
|
|
|
|
@DynamicInsert
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Table(name = "MES_WORK_CELL_POINT_GROUP")
|
|
|
|
|
@Table(name = "MES_WORK_CELL_POINT_GROUP", indexes = {
|
|
|
|
|
@Index(columnList = "ORGANIZE_CODE"),
|
|
|
|
|
@Index(columnList = "WORK_CENTER_CODE"),
|
|
|
|
|
@Index(columnList = "WORK_CELL_CODE"),
|
|
|
|
|
@Index(columnList = "QUEUE_GROUP_NO"),
|
|
|
|
|
@Index(columnList = "ORDER_NO")
|
|
|
|
|
})
|
|
|
|
|
@Api("工站分组队列")
|
|
|
|
|
public class MesWorkCellPointGroup extends BaseBean implements Serializable {
|
|
|
|
|
|
|
|
|
|