新增卡斯马热处理翻包基础模块
parent
7bb60b8f6e
commit
c2f9937b37
@ -0,0 +1,44 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : MES_容器位置
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic.xiao
|
||||||
|
* @CreateDate : 2020-11-02 17:47
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_CONTAINER_LOCATION")
|
||||||
|
@Api("MES_容器位置")
|
||||||
|
public class MesContainerLocation extends BaseBean {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1650212958579635634L;
|
||||||
|
|
||||||
|
@Column(name = "CT_CODE")
|
||||||
|
@ApiParam(value = "容器类型代码")
|
||||||
|
private String ctCode;
|
||||||
|
|
||||||
|
@Column(name = "CT_LOCATION_NO")
|
||||||
|
@ApiParam(value = "容器位置编号")
|
||||||
|
private String ctLocationNo;
|
||||||
|
|
||||||
|
@Column(name = "LOCATION_CAPACITY")
|
||||||
|
@ApiParam(value = "默认容量")
|
||||||
|
private String locationCapacity;
|
||||||
|
}
|
@ -0,0 +1,59 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : MES_客户条码规则
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic.xiao
|
||||||
|
* @CreateDate : 2020-11-02 18:19
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_CUSTOMER_SN_RULE")
|
||||||
|
@Api("MES_客户条码规则")
|
||||||
|
public class MesCustomerSnRule extends BaseBean {
|
||||||
|
private static final long serialVersionUID = -7455066846136535539L;
|
||||||
|
|
||||||
|
@Column(name = "CUSTOMER_CODE")
|
||||||
|
@ApiParam(value = "客户代码")
|
||||||
|
private String customerCode;
|
||||||
|
|
||||||
|
@Column(name = "CUSTOMER_PART_NO")
|
||||||
|
@ApiParam(value = "客户零件号")
|
||||||
|
private String customerPartNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam(value = "物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "LENGTH")
|
||||||
|
@ApiParam(value = "长度")
|
||||||
|
private Integer length;
|
||||||
|
|
||||||
|
@Column(name = "FROM1")
|
||||||
|
@ApiParam(value = "起始1")
|
||||||
|
private Integer from1;
|
||||||
|
|
||||||
|
@Column(name = "TO1")
|
||||||
|
@ApiParam(value = "至1")
|
||||||
|
private Integer to1;
|
||||||
|
|
||||||
|
@Column(name = "FIX1")
|
||||||
|
@ApiParam(value = "内容1")
|
||||||
|
private String fix1;
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : MES_产品容器容量配置
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic.xiao
|
||||||
|
* @CreateDate : 2020-11-02 18:04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_PART_CONTAINER_CAPACITY")
|
||||||
|
@Api("MES_产品容器容量配置")
|
||||||
|
public class MesPartContainerCapacity extends BaseBean {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 6438819635320965628L;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam(value = "物料编码")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "CT_CODE")
|
||||||
|
@ApiParam(value = "容器类型代码")
|
||||||
|
private String ctCode;
|
||||||
|
|
||||||
|
@Column(name = "CT_LOCATION_NO")
|
||||||
|
@ApiParam(value = "容器位置编号")
|
||||||
|
private String ctLocationNo;
|
||||||
|
|
||||||
|
@Column(name = "CT_QTY")
|
||||||
|
@ApiParam(value = "容量")
|
||||||
|
private Integer ctQty;
|
||||||
|
}
|
Loading…
Reference in New Issue