|
|
|
@ -4,16 +4,13 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
|
|
|
|
|
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 java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -29,7 +26,12 @@ import java.io.Serializable;
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Inheritance(strategy = InheritanceType.JOINED)
|
|
|
|
|
@Table(name = "MES_ROUTE_PROCESS_CELL")
|
|
|
|
|
@Table(name = "MES_ROUTE_PROCESS_CELL", indexes = {
|
|
|
|
|
@Index(columnList = "ROUTE_CODE"),
|
|
|
|
|
@Index(columnList = "ROUTE_CODE, WORK_CELL_CODE"),
|
|
|
|
|
@Index(columnList = "WORK_CENTER_CODE, WORK_CELL_CODE"),
|
|
|
|
|
@Index(columnList = "ROUTE_CODE, WORK_CENTER_CODE, WORK_CELL_CODE")
|
|
|
|
|
})
|
|
|
|
|
@Api("工序工作单元对照")
|
|
|
|
|
public class MesRouteProcessCell extends BaseBean implements Serializable {
|
|
|
|
|
private static final long serialVersionUID = 4823057491756814599L;
|
|
|
|
|