|
|
|
@ -4,15 +4,11 @@ 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 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.*;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : MES_容器
|
|
|
|
@ -40,6 +36,10 @@ public class MesContainer extends BaseBean {
|
|
|
|
|
@ApiParam(value = "容器类型代码")
|
|
|
|
|
private String ctCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "WORK_CENTER_CODE")
|
|
|
|
|
@ApiParam(value = "产线代码")
|
|
|
|
|
private String workCenterCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "USE_STATUS")
|
|
|
|
|
@ApiParam(value = "使用状态")
|
|
|
|
|
private String useStatus;
|
|
|
|
|