【2145 06 1.2.4.6.1.1 注塑计划排产】
parent
9e9bb2fd03
commit
0d81228ce7
@ -0,0 +1,41 @@
|
||||
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;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :MES_模具_零件对照表
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_MOULD_PART")
|
||||
@Api("MES_模具_零件对照表")
|
||||
public class MesMouldPart extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -773118210589936438L;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("零件号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "MOULD_CODE")
|
||||
@ApiParam("模具代码")
|
||||
private String mouldCode;
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
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;
|
||||
import javax.persistence.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :MES_生产节拍
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PLAN_TAKT")
|
||||
@Api("MES_生产节拍")
|
||||
public class MesPartTakt extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -7731182105899332278L;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("零件号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME")
|
||||
@ApiParam("零件名称")
|
||||
private String partName;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "PLAN_TAKT")
|
||||
@ApiParam("节拍")
|
||||
private Integer planTakt;
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 总装生产工单导入模板
|
||||
* @Reference :
|
||||
* @author: jessica.chen
|
||||
* @date: 2020/6/12 17:10
|
||||
* @Modify:
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Api(value="总装生产工单导入模板",description = "总装生产工单导入模板")
|
||||
public class ZzMesWorkOrderModel extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 5790342327875846646L;
|
||||
@ApiParam(value = "日期")
|
||||
@AnnoOutputColumn
|
||||
private String workDate;
|
||||
|
||||
@ApiParam(value = "班次")
|
||||
@AnnoOutputColumn
|
||||
private String shiftName;
|
||||
|
||||
@ApiParam(value = "项目名称")
|
||||
@AnnoOutputColumn(required = false)
|
||||
private String prodCfgTypeName;
|
||||
|
||||
@ApiParam(value = "SAP物料号")
|
||||
@AnnoOutputColumn
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "产品名称")
|
||||
@AnnoOutputColumn(required = false)
|
||||
private String partName;
|
||||
|
||||
@ApiParam(value = "产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam(value = "计划数")
|
||||
@AnnoOutputColumn
|
||||
private String qty;
|
||||
|
||||
@ApiParam(value = "标包")
|
||||
@AnnoOutputColumn(required = false)
|
||||
private String snp;
|
||||
|
||||
@ApiParam(value = "包装规格")
|
||||
@AnnoOutputColumn
|
||||
private String packageSpec;
|
||||
|
||||
@ApiParam(value = "备注")
|
||||
@AnnoOutputColumn(required = false)
|
||||
private String memo;
|
||||
|
||||
@ApiParam(value = "行数")
|
||||
@AnnoOutputColumn(required = false)
|
||||
private Integer rows;
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesMouldPart;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPart;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesMouldPartRepository extends BaseRepository<MesMouldPart, Long> {
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPart;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesPartTakt;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPartTaktRepository extends BaseRepository<MesPartTakt, Long> {
|
||||
}
|
Loading…
Reference in New Issue