|
|
|
@ -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.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -26,7 +23,12 @@ import java.io.Serializable;
|
|
|
|
|
@DynamicInsert
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Table(name = "MES_QUEUE_JIT_PLAN_DETAIL")
|
|
|
|
|
@Table(name = "MES_QUEUE_JIT_PLAN_DETAIL", indexes = {
|
|
|
|
|
@Index(columnList = "JIS_PLAN_NO"),
|
|
|
|
|
@Index(columnList = "ORGANIZE_CODE"),
|
|
|
|
|
@Index(columnList = "PRODUCE_CTGY_CODE"),
|
|
|
|
|
@Index(columnList = "PART_NO")
|
|
|
|
|
})
|
|
|
|
|
@Api("MES_客户JIT预装队列明细")
|
|
|
|
|
public class MesQueueJitPlanDetail extends BaseBean implements Serializable {
|
|
|
|
|
|
|
|
|
|