【1865 客户JIT生产队列,自动下达定时JOB】
parent
8b63dea809
commit
9b8342b7f5
@ -0,0 +1,60 @@
|
|||||||
|
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:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: jessica.chen
|
||||||
|
* @CreateDate: 2019\11\15 10:01
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_JIT_ACTUAL_BOM")
|
||||||
|
@Api("MES_客户JIT生产队列散件清单")
|
||||||
|
public class MesQueueJitActualBom extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -5412635747424111476L;
|
||||||
|
@Column(name = "JIS_ACTUAL_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jisActualNo;
|
||||||
|
|
||||||
|
@Column(name = "ASSY_NO")
|
||||||
|
@ApiParam("组件编号")
|
||||||
|
private String assyNo;
|
||||||
|
|
||||||
|
@Column(name = "PRODUCE_CTGY_CODE")
|
||||||
|
@ApiParam("产品位置代码")
|
||||||
|
private Double produceCtgyCode = 0D;
|
||||||
|
|
||||||
|
@Column(name = "CUST_PART_NO")
|
||||||
|
@ApiParam("客户物料号")
|
||||||
|
private String custPartNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "QTY")
|
||||||
|
@ApiParam("用量")
|
||||||
|
private Double qty = 0d;
|
||||||
|
|
||||||
|
@Column(name = "PART_COLOR_VALUE")
|
||||||
|
@ApiParam("零件色值")
|
||||||
|
private String partColorValue;
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
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:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: jessica.chen
|
||||||
|
* @CreateDate: 2019\11\15 10:01
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_ORDER_BOM")
|
||||||
|
@Api("MES_生产队列散件清单")
|
||||||
|
public class MesQueueOrderBom extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -5412635747424111476L;
|
||||||
|
@Column(name = "ORDER_NO")
|
||||||
|
@ApiParam("主队列编号")
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@Column(name = "VIN_CODE")
|
||||||
|
@ApiParam("Vin")
|
||||||
|
private String vinCode;
|
||||||
|
|
||||||
|
@Column(name = "ASSY_NO")
|
||||||
|
@ApiParam("组件编号")
|
||||||
|
private String assyNo;
|
||||||
|
|
||||||
|
@Column(name = "PRODUCE_CTGY_CODE")
|
||||||
|
@ApiParam("产品位置代码")
|
||||||
|
private String produceCtgyCode;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "QTY")
|
||||||
|
@ApiParam("用量")
|
||||||
|
private Double qty = 0d;
|
||||||
|
|
||||||
|
@Column(name = "COLOR_CODE")
|
||||||
|
@ApiParam("颜色代码")
|
||||||
|
private String colorCode;
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.IfQcOrder;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesQueueJitActualBom;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\18 10:34
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueJitActualBomRepository extends BaseRepository<MesQueueJitActualBom, Long> {
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesQueueOrderBom;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: joke.wang
|
||||||
|
* @CreateDate: 2019\11\18 10:34
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueOrderBomRepository extends BaseRepository<MesQueueOrderBom, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue