Merge branch 'test' of i3-IMPP/i3plus-pojo into master
commit
30722b130c
@ -0,0 +1,38 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/3/5 11:54
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_PART_PRODUCE_TYPE")
|
||||||
|
@Api("产品生产类型")
|
||||||
|
public class MesPartProduceType extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = 9191695513960958568L;
|
||||||
|
|
||||||
|
@Column(name = "PPT_CODE")
|
||||||
|
@ApiParam("产品生产类型")
|
||||||
|
private String pptCode;
|
||||||
|
|
||||||
|
@Column(name = "PPT_NAME")
|
||||||
|
@ApiParam("产品生产类型名称")
|
||||||
|
private String pptName;
|
||||||
|
}
|
@ -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 :MES_QUEUE_JIT_ACTUAL_DETAIL
|
||||||
|
* @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,91 @@
|
|||||||
|
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 :
|
||||||
|
* @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;
|
||||||
|
|
||||||
|
}
|
@ -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 = "QGR_CODE")
|
||||||
|
@ApiParam("分组规则代码")
|
||||||
|
private String qgrCode;
|
||||||
|
|
||||||
|
@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,37 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/3/9 15:35
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ActorMessageModel<T> {
|
||||||
|
|
||||||
|
private String msgType;
|
||||||
|
|
||||||
|
private String clientInfo;
|
||||||
|
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
private String routeCode;
|
||||||
|
|
||||||
|
private String serialNumber;
|
||||||
|
|
||||||
|
private String productSn;
|
||||||
|
|
||||||
|
private T dataObj;
|
||||||
|
|
||||||
|
private List<? extends T> dataList;
|
||||||
|
|
||||||
|
private Map<String, Object> dataMap;
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package cn.estsh.i3plus.pojo.model.mes;
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
|
||||||
import io.swagger.annotations.ApiParam;
|
import io.swagger.annotations.ApiParam;
|
@ -1,4 +1,4 @@
|
|||||||
package cn.estsh.i3plus.pojo.model.mes;
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
import io.swagger.annotations.ApiParam;
|
import io.swagger.annotations.ApiParam;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesPartProduceType;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jack.jia
|
||||||
|
* @CreateDate : 2019-04-02
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesPartProduceTypeRepository extends BaseRepository<MesPartProduceType, 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,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.annotation;
|
||||||
|
|
||||||
|
|
||||||
|
import java.lang.annotation.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Wynne.Lu
|
||||||
|
* @CreateDate: 2019/12/25 1:45 下午
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target({ElementType.TYPE})
|
||||||
|
@Documented
|
||||||
|
public @interface ElasticSearch {
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.annotation;
|
||||||
|
|
||||||
|
|
||||||
|
import java.lang.annotation.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Wynne.Lu
|
||||||
|
* @CreateDate: 2019/12/25 1:45 下午
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target({ElementType.FIELD})
|
||||||
|
@Documented
|
||||||
|
public @interface Json4Es {
|
||||||
|
}
|
@ -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,56 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: yiming.gu
|
||||||
|
* @CreateDate:2019-04-22-17:20
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "PTL_PCN_CONNECT_LOG")
|
||||||
|
@Api("PCN节点连接日志")
|
||||||
|
public class PtlPcnConnectLog extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = 2756240593256441951L;
|
||||||
|
|
||||||
|
@Column(name = "PCN_CODE")
|
||||||
|
@ApiParam("PCN代码")
|
||||||
|
private String pcnCode;
|
||||||
|
|
||||||
|
@Column(name = "PCN_NAME")
|
||||||
|
@ApiParam("PCN名称")
|
||||||
|
private String pcnName;
|
||||||
|
|
||||||
|
@Column(name = "PCN_VERSION")
|
||||||
|
@ApiParam("PCN版本")
|
||||||
|
private String pcnVersion;
|
||||||
|
|
||||||
|
@Column(name = "CONNECT_IP")
|
||||||
|
@ApiParam("连接IP")
|
||||||
|
private String connectIp;
|
||||||
|
|
||||||
|
@Column(name = "IS_CONNECT")
|
||||||
|
@ApiParam("是否连接")
|
||||||
|
private Integer isConnect;
|
||||||
|
|
||||||
|
@Column(name = "REMARK")
|
||||||
|
@ApiParam("备注")
|
||||||
|
private String Remark;
|
||||||
|
}
|
@ -0,0 +1,56 @@
|
|||||||
|
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.*;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Wynne.Lu
|
||||||
|
* @CreateDate: 2020/02/15 1:45 PM
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "PTL_SYNC_DEAD_LETTER", indexes = {
|
||||||
|
@Index(name = "idx_object_code_pcn", columnList = "OBJECT_CODE"),
|
||||||
|
@Index(name = "idx_object_code_pcn", columnList = "PCN_CODE")
|
||||||
|
})
|
||||||
|
@Api("数据同步死信")
|
||||||
|
public class PtlSyncDeadLetter extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = 1151025992437433734L;
|
||||||
|
|
||||||
|
@Column(name = "OBJECT_CODE")
|
||||||
|
@ApiParam("对象代码")
|
||||||
|
private String objectCode;
|
||||||
|
|
||||||
|
@Column(name = "SYNC_TYPE")
|
||||||
|
@ApiParam("同步类型")
|
||||||
|
private Integer syncType;
|
||||||
|
|
||||||
|
@Column(name = "PCN_CODE")
|
||||||
|
@ApiParam("pcn代码")
|
||||||
|
private String pcnCode;
|
||||||
|
|
||||||
|
@Lob
|
||||||
|
@Column(name = "EX_MSG")
|
||||||
|
@ApiParam("同步数据")
|
||||||
|
private String exMsg;
|
||||||
|
|
||||||
|
@Lob
|
||||||
|
@Column(name = "DATA")
|
||||||
|
@ApiParam("同步数据")
|
||||||
|
private String data;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.model;
|
||||||
|
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Api("产品包装model")
|
||||||
|
public class ProductDataModel {
|
||||||
|
|
||||||
|
@ApiParam("字段代码")
|
||||||
|
private String fieldCode;
|
||||||
|
|
||||||
|
@ApiParam("字段名称")
|
||||||
|
private String fieldName;
|
||||||
|
|
||||||
|
@ApiParam("字段值")
|
||||||
|
private String fieldValue;
|
||||||
|
}
|
@ -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> {
|
||||||
|
}
|
@ -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.PtlPcnConnectLog;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: yiming.gu
|
||||||
|
* @CreateDate:2019-04-24-17:13
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface PtlPcnConnectLogRepository extends BaseRepository<PtlPcnConnectLog, Long> {
|
||||||
|
}
|
@ -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.PtlPcn;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: yiming.gu
|
||||||
|
* @CreateDate:2019-04-24-17:13
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface PtlPcnRepository extends BaseRepository<PtlPcn, Long> {
|
||||||
|
}
|
@ -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.PtlPcnTaskLog;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wangjie
|
||||||
|
* @CreateDate : 2019-08-27
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface PtlPcnTaskLogRepository extends BaseRepository<PtlPcnTaskLog, Long> {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.ptl.bean.PtlSyncDeadLetter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/2/18 09:19
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
public interface PtlSyncDeadLetterRepository extends BaseRepository<PtlSyncDeadLetter, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue