task `1430` 工位扫描,产品信号监听,队列监听
commit
b52bb02d73
@ -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;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Author: jokelin
|
||||||
|
* @Date: 2020/3/11 8:59 上午
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_PROD_SCATTER_DETAIL")
|
||||||
|
@Api("MES_散件产品配置关系")
|
||||||
|
public class MesProdScatterDetail extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -3602480079910597288L;
|
||||||
|
|
||||||
|
@Column(name = "SP_CFG_CODE")
|
||||||
|
@ApiParam("散件配置编码")
|
||||||
|
private String spCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "PRODUCE_CTGY_CODE")
|
||||||
|
@ApiParam("产品位置代码")
|
||||||
|
private String produceCtgyCode;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("散件产品代码")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NAME")
|
||||||
|
@ApiParam("散件产品名称")
|
||||||
|
private String partName;
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
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 : joke
|
||||||
|
* @CreateDate : 2020-03-06 9:34 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_PRODUCE_GROUP")
|
||||||
|
@Api("MES_生产组")
|
||||||
|
public class MesProduceGroup extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -6926189371427937743L;
|
||||||
|
|
||||||
|
@Column(name = "PG_CODE")
|
||||||
|
@ApiParam("生产组代码")
|
||||||
|
private String pgCode;
|
||||||
|
|
||||||
|
@Column(name = "PG_NAME")
|
||||||
|
@ApiParam("生产组名称")
|
||||||
|
private String pgName;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
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 : joke
|
||||||
|
* @CreateDate : 2020-03-06 9:22 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_PRODUCE_GROUP_CFG")
|
||||||
|
@Api("MES_生产组配置")
|
||||||
|
public class MesProduceGroupCfg extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 82611799819312505L;
|
||||||
|
@Column(name = "PG_CODE")
|
||||||
|
@ApiParam("生产组代码")
|
||||||
|
private String pgCode;
|
||||||
|
|
||||||
|
@Column(name = "WORK_CENTER_CODE")
|
||||||
|
@ApiParam("生产线")
|
||||||
|
private String workCenterCode;
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
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 : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:16 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_GROUP_COUNT")
|
||||||
|
@Api("MES_队列分组计数")
|
||||||
|
public class MesQueueGroupCount extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -7799006330177462162L;
|
||||||
|
|
||||||
|
@Column(name = "QGR_CODE")
|
||||||
|
@ApiParam("分组规则代码")
|
||||||
|
private String qgrCode;
|
||||||
|
|
||||||
|
@Column(name = "QUEUE_GROUP_NO")
|
||||||
|
@ApiParam("分组队列编号")
|
||||||
|
private String queueGroupNo;
|
||||||
|
|
||||||
|
@Column(name = "QTY")
|
||||||
|
@ApiParam("分组数量")
|
||||||
|
private Integer qty;
|
||||||
|
|
||||||
|
@Column(name = "CNT_QTY")
|
||||||
|
@ApiParam("累计数")
|
||||||
|
private Integer cntQty;
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
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_QUEUE_GROUP_COUNT
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:16 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_GROUP_RULE")
|
||||||
|
@Api("MES_队列分组规则")
|
||||||
|
public class MesQueueGroupRule extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -6857842499743356177L;
|
||||||
|
|
||||||
|
@Column(name = "QGR_CODE")
|
||||||
|
@ApiParam("分组规则代码")
|
||||||
|
private String qgrCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_PLANT_CODE")
|
||||||
|
@ApiParam("客户产线代码")
|
||||||
|
private String custPlantCode;
|
||||||
|
|
||||||
|
@Column(name = "PRODUCE_CTGY_CODE")
|
||||||
|
@ApiParam("产品位置代码")
|
||||||
|
private String produceCtgyCode;
|
||||||
|
|
||||||
|
@Column(name = "QTY")
|
||||||
|
@ApiParam("分组数量")
|
||||||
|
private Integer qty;
|
||||||
|
}
|
@ -0,0 +1,108 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.model.MesButtonFlagModel;
|
||||||
|
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 :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:16 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_JIT_ACTUAL")
|
||||||
|
@Api("MES_客户JIT生产队列")
|
||||||
|
public class MesQueueJitActual extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 655875369308810110L;
|
||||||
|
|
||||||
|
@Column(name = "JIS_ACTUAL_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jisActualNo;
|
||||||
|
|
||||||
|
@Column(name = "PROD_CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String prodCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "VIN_CODE")
|
||||||
|
@ApiParam("vin")
|
||||||
|
private String vinCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_FLAG_NO")
|
||||||
|
@ApiParam("客户标识号")
|
||||||
|
private String custFlagNo;
|
||||||
|
|
||||||
|
@Column(name = "SEQ")
|
||||||
|
@ApiParam("排序号")
|
||||||
|
private Double seq;
|
||||||
|
|
||||||
|
@Column(name = "STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
@Column(name = "SPECIAL_FLAG")
|
||||||
|
@ApiParam("特殊标识")
|
||||||
|
private Integer specialFlag;
|
||||||
|
|
||||||
|
@Column(name = "CUST_POINT_DATE")
|
||||||
|
@ApiParam("客户需求时间")
|
||||||
|
private String custPointDate;
|
||||||
|
|
||||||
|
@Column(name = "CUST_CODE")
|
||||||
|
@ApiParam("客户代码")
|
||||||
|
private String custCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_PLANT_CODE")
|
||||||
|
@ApiParam("客户产线代码")
|
||||||
|
private String custPlantCode;
|
||||||
|
|
||||||
|
@Column(name = "MEMO")
|
||||||
|
@ApiParam("备注")
|
||||||
|
private String memo;
|
||||||
|
|
||||||
|
@Column(name = "PG_CODE")
|
||||||
|
@ApiParam("生产组代码")
|
||||||
|
private String pgCode;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("客户需求开始时间")
|
||||||
|
private String custPointStartDate;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("客户需求结束时间")
|
||||||
|
private String custPointEndDate;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("产品配置名称")
|
||||||
|
private String prodCfgName;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("状态名称")
|
||||||
|
private String statusName;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam("特殊标识名称")
|
||||||
|
private String specialFlagName;
|
||||||
|
|
||||||
|
@Transient
|
||||||
|
@ApiParam(value = "下达按钮编号")
|
||||||
|
public String buttonCode;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
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_QUEUE_JIT_ACTUAL
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:16 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_JIT_ACTUAL_DETAIL")
|
||||||
|
@Api("MES_客户JIT生产队列明细")
|
||||||
|
public class MesQueueJitActualDetail extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1442091799346314190L;
|
||||||
|
|
||||||
|
@Column(name = "JIS_ACTUAL_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jisActualNo;
|
||||||
|
|
||||||
|
@Column(name = "PROD_CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String prodCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PRODUCE_CTGY_CODE")
|
||||||
|
@ApiParam("产品位置代码")
|
||||||
|
private String produceCtgyCode;
|
||||||
|
|
||||||
|
@Column(name = "PART_NAME")
|
||||||
|
@ApiParam("产品名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@Column(name = "QUEUE_GROUP_NO")
|
||||||
|
@ApiParam("分组队列编号")
|
||||||
|
private String queueGroupNo;
|
||||||
|
|
||||||
|
@Column(name = "GROUP_NO")
|
||||||
|
@ApiParam("组内编号")
|
||||||
|
private Integer groupNo;
|
||||||
|
}
|
@ -0,0 +1,77 @@
|
|||||||
|
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 : joke
|
||||||
|
* @CreateDate : 2020-03-06 9:40 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_JIT_PLAN")
|
||||||
|
@Api("MES_客户JIT预装队列")
|
||||||
|
public class MesQueueJitPlan extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 6613487463796132500L;
|
||||||
|
|
||||||
|
@Column(name = "JIS_PLAN_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jisPlanNo;
|
||||||
|
|
||||||
|
@Column(name = "PROD_CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String prodCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "VIN_CODE")
|
||||||
|
@ApiParam("vin")
|
||||||
|
private String vinCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_FLAG_NO")
|
||||||
|
@ApiParam("客户标识号")
|
||||||
|
private String custFlagNo;
|
||||||
|
|
||||||
|
@Column(name = "VEHICLE_CODE")
|
||||||
|
@ApiParam("选配码")
|
||||||
|
private String vehicleCode;
|
||||||
|
|
||||||
|
@Column(name = "SEQ")
|
||||||
|
@ApiParam("计划排序号")
|
||||||
|
private String seq;
|
||||||
|
|
||||||
|
@Column(name = "STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
@Column(name = "PLAN_DATE")
|
||||||
|
@ApiParam("计划上线时间")
|
||||||
|
private String planDate;
|
||||||
|
|
||||||
|
@Column(name = "CUST_CODE")
|
||||||
|
@ApiParam("客户代码")
|
||||||
|
private String custCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_PLANT_CODE")
|
||||||
|
@ApiParam("客户工厂代码")
|
||||||
|
private String custPlantCode;
|
||||||
|
|
||||||
|
@Column(name = "VERSION")
|
||||||
|
@ApiParam("版本号")
|
||||||
|
private String version;
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
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 : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:01 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_JIT_PLAN_BOM")
|
||||||
|
@Api("MES_客户JIT预装队列BOM")
|
||||||
|
public class MesQueueJitPlanBom extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 2037991315471333415L;
|
||||||
|
|
||||||
|
@Column(name = "JIS_PLAN_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jisPlanNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "ITEM_PART_NO")
|
||||||
|
@ApiParam("原材料物料号")
|
||||||
|
private String itemPartNo;
|
||||||
|
|
||||||
|
@Column(name = "DOCK_NO")
|
||||||
|
@ApiParam("道口")
|
||||||
|
private String dockNo;
|
||||||
|
|
||||||
|
@Column(name = "QTY")
|
||||||
|
@ApiParam("用量")
|
||||||
|
private Double qty;
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
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 : joke
|
||||||
|
* @CreateDate : 2020-03-06 9:58 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_JIT_PLAN_DETAIL")
|
||||||
|
@Api("MES_客户JIT预装队列明细")
|
||||||
|
public class MesQueueJitPlanDetail extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1263996676519565026L;
|
||||||
|
|
||||||
|
@Column(name = "JIS_PLAN_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jisPlanNo;
|
||||||
|
|
||||||
|
@Column(name = "PROD_CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String prodCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NAME")
|
||||||
|
@ApiParam("产品名称")
|
||||||
|
private String partName;
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesProdScatterDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Author: jokelin
|
||||||
|
* @Date: 2020/3/11 9:16 上午
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
public interface MesProdScatterDetailRepository extends BaseRepository<MesProdScatterDetail, 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.MesProduceGroupCfg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:53 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesProduceGroupCfgRepository extends BaseRepository<MesProduceGroupCfg, 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.MesProduceGroup;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:52 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesProduceGroupRepository extends BaseRepository<MesProduceGroup, 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.MesQueueGroupCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:54 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueGroupCountRepository extends BaseRepository<MesQueueGroupCount, 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.MesQueueGroupRule;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:55 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueGroupRuleRepository extends BaseRepository<MesQueueGroupRule, 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.MesQueueJitActualDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:57 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueJitActualDetailRepository extends BaseRepository<MesQueueJitActualDetail, 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.MesQueueJitActual;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:56 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueJitActualRepository extends BaseRepository<MesQueueJitActual, 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.MesQueueJitPlanBom;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:58 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueJitPlanBomRepository extends BaseRepository<MesQueueJitPlanBom, 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.MesQueueJitPlanDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:58 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueJitPlanDetailRepository extends BaseRepository<MesQueueJitPlanDetail, 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.MesQueueJitPlan;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : joke
|
||||||
|
* @CreateDate : 2020-03-06 10:57 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface MesQueueJitPlanRepository extends BaseRepository<MesQueueJitPlan, Long> {
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.wms;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsFurniture;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsLocate;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsZones;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 更改三维坐标MoDel
|
||||||
|
* @Reference
|
||||||
|
* @Author dragon
|
||||||
|
* @CreateDate 2020/3/6 17:57
|
||||||
|
* @Modify
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class WmsTdChangeModel implements Serializable {
|
||||||
|
private static final long serialVersionUID = -2682858106052506217L;
|
||||||
|
|
||||||
|
private List<WmsZones> wmsZonesList;
|
||||||
|
private List<WmsFurniture> wmsFurnitureList;
|
||||||
|
private List<WmsLocate> wmsLocateList;
|
||||||
|
private String organizeCode;
|
||||||
|
}
|
@ -0,0 +1,58 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.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;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author adair.song
|
||||||
|
* @date 2020/03/09 17:41
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name = "PTL_PCN_CLEAR")
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Api("PTL_PCN数据清理")
|
||||||
|
public class PtlPcnClear extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = -1596443273899197995L;
|
||||||
|
|
||||||
|
@Column(name = "PCN_CODE")
|
||||||
|
@ApiParam("PCN代码")
|
||||||
|
private String pcnCode;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_CODE")
|
||||||
|
@ApiParam("对象代码")
|
||||||
|
private String objectCode;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_NAME")
|
||||||
|
@ApiParam("对象名称")
|
||||||
|
private String objectName;
|
||||||
|
|
||||||
|
@Column(name = "EXTRACT_CONDITION")
|
||||||
|
@ApiParam("获取数据条件")
|
||||||
|
private String extractCondition;
|
||||||
|
|
||||||
|
@Column(name = "ACTION_FREQUENCY")
|
||||||
|
@ApiParam("执行频率")
|
||||||
|
private Integer actionFrequency;
|
||||||
|
|
||||||
|
@Column(name = "LAST_SYNC_TIME")
|
||||||
|
@ApiParam("上一执行时间")
|
||||||
|
private String lastSyncTime;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.ptl.bean.PtlPcnClear;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: adair.song
|
||||||
|
* @CreateDate:2019-04-24-17:13
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface PtlPcnClearRepository extends BaseRepository<PtlPcnClear, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue