Merge branch 'master' of http://git.estsh.com/i3-IMPP/i3plus-pojo
commit
a22e2c61dc
@ -0,0 +1,50 @@
|
||||
package cn.estsh.i3plus.pojo.andon.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.AndonEnumUtil;
|
||||
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 : ANDON_工作单元呼叫原因配置
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:20
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_CELL_ALARM_CAUSE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("ANDON_工作单元呼叫原因配置")
|
||||
public class AndonCellAlarmCause extends BaseBean {
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam(value = "工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam(value = "工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "AC_CODE")
|
||||
@ApiParam(value = "呼叫原因代码")
|
||||
private String acCode;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : ANDON_工作单元事件原因配置
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:20
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_CELL_EVENT_CAUSE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("ANDON_工作单元事件原因配置")
|
||||
public class AndonCellEventCause extends BaseBean {
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam(value = "工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam(value = "工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "EC_CODE")
|
||||
@ApiParam(value = "事件原因代码")
|
||||
private String ecCode;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package cn.estsh.i3plus.pojo.andon.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.AndonEnumUtil;
|
||||
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 : ANDON_工作单元处理方法配置
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:20
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_CELL_EVENT_METHOD")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("ANDON_工作单元处理方法配置")
|
||||
public class AndonCellEventMethod extends BaseBean {
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam(value = "工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam(value = "工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "EM_CODE")
|
||||
@ApiParam(value = "事件方法代码")
|
||||
private String emCode;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
package cn.estsh.i3plus.pojo.andon.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 : ANDON_工作单元事件现象
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:20
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_CELL_EVENT_PHENOMENON")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("ANDON_工作单元事件现象")
|
||||
public class AndonCellEventPhenomenon extends BaseBean {
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam(value = "工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam(value = "工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "EPM_CODE")
|
||||
@ApiParam(value = "事件现象代码")
|
||||
private String epmCode;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonAlarmCause;
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonCellAlarmCause;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : ANDON_工作单元呼叫原因配置
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:07
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonCellAlarmCauseRepository extends BaseRepository<AndonCellAlarmCause, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonCellEventCause;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : ANDON_工作单元事件原因配置
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:07
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonCellEventCauseRepository extends BaseRepository<AndonCellEventCause, Long> {
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonCellAlarmCause;
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonCellEventMethod;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : ANDON_工作单元处理方法配置
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:07
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonCellEventMethodRetository extends BaseRepository<AndonCellEventMethod, Long> {
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonCellAlarmCause;
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonCellEventPhenomenon;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : ANDON_工作单元事件现象
|
||||
* @Reference :
|
||||
* @Author : crish.li
|
||||
* @CreateDate : 2019-08-22 11:07
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonCellEventPhenomenonRepository extends BaseRepository<AndonCellEventPhenomenon, Long> {
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/22 5:59 PM
|
||||
* @Description:
|
||||
**/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_NUMBER_RULE")
|
||||
@Api("条码生成规则")
|
||||
public class MesNumberRule extends BaseBean {
|
||||
|
||||
@Column(name = "RULE_CODE")
|
||||
@ApiParam("规则代码")
|
||||
private String ruleCode;
|
||||
|
||||
@Column(name = "RULE_DESC")
|
||||
@ApiParam("规则描述")
|
||||
private String ruleDesc;
|
||||
|
||||
@Column(name = "PREFIX")
|
||||
@ApiParam("前缀")
|
||||
private String prefix;
|
||||
|
||||
@Column(name = "NUMBER_RULE")
|
||||
@ApiParam("编码规则")
|
||||
private String numberRule;
|
||||
|
||||
@Column(name = "SERIALNO_LENGTH")
|
||||
@ApiParam("序号长度")
|
||||
private Integer serialnoLength;
|
||||
|
||||
@Column(name = "SERIALNO_INCREMENT")
|
||||
@ApiParam("增量")
|
||||
private Integer serialnoIncrement;
|
||||
|
||||
@Column(name = "IS_CYCLE")
|
||||
@ApiParam("最大值后循环")
|
||||
private Integer isCycle;
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/23 9:14 AM
|
||||
* @Description:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_NUMBER_SERIALNO")
|
||||
@Api("编码序号")
|
||||
public class MesNumberSerialno extends BaseBean {
|
||||
|
||||
@Column(name = "CURRENT_NUMBER_PREFIX")
|
||||
@ApiParam("当前编号前缀")
|
||||
private String currentNumberPrefix;
|
||||
|
||||
@Column(name = "CURRENT_SERIALNO")
|
||||
@ApiParam("当前序号")
|
||||
private Integer currentSerialno;
|
||||
|
||||
@Column(name = "CURRENT_NUMBER")
|
||||
@ApiParam("当前编号")
|
||||
private String currentNumber;
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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-pcn定时任务工作清单
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-26
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_PCN_TASK")
|
||||
@Api("mes-pcn定时任务工作清单")
|
||||
public class MesPcnTask extends BaseBean {
|
||||
|
||||
@Column(name="TASK_CODE")
|
||||
@ApiParam("任务代码")
|
||||
private String taskCode;
|
||||
|
||||
@Column(name="TASK_NAME")
|
||||
@ApiParam("任务名称")
|
||||
private String taskName;
|
||||
|
||||
@Column(name="TASK_DESCRIPTION")
|
||||
@ApiParam("任务描述")
|
||||
private String taskDescription;
|
||||
|
||||
@Column(name="TASK_TYPE")
|
||||
@ApiParam("任务类型")
|
||||
private Integer taskType;
|
||||
|
||||
@Column(name="TASK_MODULE")
|
||||
@ApiParam("任务模块")
|
||||
private String taskModule;
|
||||
|
||||
@Column(name="TASK_CLASS")
|
||||
@ApiParam("任务类名")
|
||||
private String taskClass;
|
||||
|
||||
@Column(name="TASK_PACKAGE")
|
||||
@ApiParam("任务包名")
|
||||
private String taskPackage;
|
||||
|
||||
@Column(name="PCN_NAME")
|
||||
@ApiParam("PCN节点名称")
|
||||
private String pcnName;
|
||||
|
||||
@Column(name="TASK_CYCLE_EXPS")
|
||||
@ApiParam("任务周期表达式")
|
||||
private String taskCycleExps;
|
||||
|
||||
@Column(name="TASK_CYCLE_DESCRIPTION")
|
||||
@ApiParam("任务周期描述")
|
||||
private String taskCycleDescription;
|
||||
|
||||
public int getTaskTypeVal() {
|
||||
return this.taskType == null ? 0 : this.taskType;
|
||||
}
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.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-pcn定时任务工作清单同步记录
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-27
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_PCN_TASK_LOG")
|
||||
@Api("mes-pcn定时任务工作清单同步记录")
|
||||
public class MesPcnTaskLog extends BaseBean {
|
||||
|
||||
@Column(name="SYNC_TIME_START")
|
||||
@ApiParam("同步数据开始时间")
|
||||
private String syncTimeStart;
|
||||
|
||||
@Column(name="SYNC_TIME_END")
|
||||
@ApiParam("同步数据截止时间")
|
||||
private String syncTimeEnd;
|
||||
|
||||
@Column(name="SYNC_STATUS")
|
||||
@ApiParam("同步状态")
|
||||
private Integer syncStatus;
|
||||
|
||||
@Column(name="ERROR_CONTENT")
|
||||
@ApiParam("异常内容")
|
||||
private String errorContent;
|
||||
|
||||
public int getSyncStatusVal() {
|
||||
return this.syncStatus == null ? 0 : this.syncStatus;
|
||||
}
|
||||
}
|
@ -1,17 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesArea;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesLabelTemplateParam;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
* @Description : 打印模板
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @Date : 2019-08-18 12:03:01.024
|
||||
* @Modify :
|
||||
**/
|
||||
@Repository
|
||||
public interface MesLabelTemplateParamRepository extends BaseRepository<MesLabelTemplateParam, Long> {
|
||||
}
|
||||
|
@ -1,17 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesArea;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesLabelTemplate;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
* @Description : 打印模板
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @Date : 2019-08-18 12:03:01.024
|
||||
* @Modify :
|
||||
**/
|
||||
@Repository
|
||||
public interface MesLabelTemplateRepository extends BaseRepository<MesLabelTemplate, Long> {
|
||||
}
|
||||
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesPcnTaskLog;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPcnTaskLogRepository extends BaseRepository<MesPcnTaskLog, Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.pcn.bean.MesPcnTask;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :mes-pcn定时任务清单
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-26
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPcnTaskRepository extends BaseRepository<MesPcnTask, Long> {
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
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.*;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 打印模板
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @CreateDate : 2019-08-18 11:00
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_LABEL_TEMPLATE")
|
||||
@Api(value="打印模板",description = "打印模板")
|
||||
public class MesLabelTemplate extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 5371856566557305323L;
|
||||
@Column(name="TEMPLATE_CODE")
|
||||
@ApiParam(value ="模板代码")
|
||||
private String templateCode;
|
||||
|
||||
@Column(name="TEMPLATE_NAME")
|
||||
@ApiParam(value ="模板名称")
|
||||
private String templateName;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_CONTENT")
|
||||
@ApiParam(value ="模板内容")
|
||||
private String templateContent;
|
||||
|
||||
// 参数拼接,多参数都好分隔,后台在做处理
|
||||
@ApiParam(value ="模板参数拼接")
|
||||
@Transient
|
||||
private String paramsPack;
|
||||
|
||||
@Transient
|
||||
@ApiParam(value ="模板id对应的模板参数")
|
||||
private List<MesLabelTemplateParam> labelTemplateParamList;
|
||||
}
|
@ -0,0 +1,54 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
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.*;
|
||||
|
||||
/**
|
||||
* @Description : 打印模板参数
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @CreateDate : 2019-08-18 11:00
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_LABEL_TEMPLATE_PARAM")
|
||||
@Api(value="打印模板参数",description = "打印模板参数")
|
||||
public class MesLabelTemplateParam extends BaseBean {
|
||||
|
||||
private static final long serialVersionUID = 6476163540527157643L;
|
||||
@Column(name="TEMPLATE_ID")
|
||||
@ApiParam(value ="模板ID" , access ="模板ID" ,example = "-1")
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private Long templateId;
|
||||
|
||||
@Column(name="TEMPLATE_CODE")
|
||||
@ApiParam(value ="模板代码")
|
||||
private String templateCode;
|
||||
|
||||
@Column(name="TEMPLATE_PARAM")
|
||||
@ApiParam(value ="模板参数")
|
||||
private String templateParam;
|
||||
|
||||
@Lob
|
||||
@Column(name="TEMPLATE_PARAM_TEXT")
|
||||
@ApiParam(value ="模板参数描述")
|
||||
private String templateParamText;
|
||||
|
||||
// 参数拼接,多参数都好分隔,后台在做处理
|
||||
@ApiParam(value ="模板参数值")
|
||||
@Transient
|
||||
private String templateParamValue;
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/22 5:59 PM
|
||||
* @Description:
|
||||
**/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_NUMBER_RULE")
|
||||
@Api("条码生成规则")
|
||||
public class MesNumberRule extends BaseBean {
|
||||
|
||||
@Column(name = "RULE_CODE")
|
||||
@ApiParam("规则代码")
|
||||
private String ruleCode;
|
||||
|
||||
@Column(name = "RULE_DESC")
|
||||
@ApiParam("规则描述")
|
||||
private String ruleDesc;
|
||||
|
||||
@Column(name = "PREFIX")
|
||||
@ApiParam("前缀")
|
||||
private String prefix;
|
||||
|
||||
@Column(name = "NUMBER_RULE")
|
||||
@ApiParam("编码规则")
|
||||
private String numberRule;
|
||||
|
||||
@Column(name = "SERIALNO_LENGTH")
|
||||
@ApiParam("序号长度")
|
||||
private Integer serialnoLength;
|
||||
|
||||
@Column(name = "SERIALNO_INCREMENT")
|
||||
@ApiParam("增量")
|
||||
private Integer serialnoIncrement;
|
||||
|
||||
@Column(name = "IS_CYCLE")
|
||||
@ApiParam("最大值后循环")
|
||||
private Integer isCycle;
|
||||
}
|
@ -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;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/23 9:14 AM
|
||||
* @Description:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_NUMBER_SERIALNO")
|
||||
@Api("编码序号")
|
||||
public class MesNumberSerialno extends BaseBean {
|
||||
|
||||
@Column(name = "CURRENT_NUMBER_PREFIX")
|
||||
@ApiParam("当前编号前缀")
|
||||
private String currentNumberPrefix;
|
||||
|
||||
@Column(name = "CURRENT_SERIALNO")
|
||||
@ApiParam("当前序号")
|
||||
private Integer currentSerialno;
|
||||
|
||||
@Column(name = "CURRENT_NUMBER")
|
||||
@ApiParam("当前编号")
|
||||
private String currentNumber;
|
||||
}
|
@ -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;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: crish
|
||||
* @CreateDate:2019-08-23-17:20
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_PCN_SYNC_ERRORLOG")
|
||||
@Api("MES_PCN同步异常日志")
|
||||
public class MesPcnSyncErrorLog extends BaseBean {
|
||||
@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="ERROR_SPOT")
|
||||
@ApiParam("异常位置")
|
||||
private String errorSpot;
|
||||
|
||||
@Column(name="ERROR_CONTENT")
|
||||
@ApiParam("异常内容")
|
||||
private String errorContent;
|
||||
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
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-pcn定时任务工作清单
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-26
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="MES_PCN_TASK")
|
||||
@Api("mes-pcn定时任务工作清单")
|
||||
public class MesPcnTask extends BaseBean {
|
||||
|
||||
@Column(name="TASK_CODE")
|
||||
@ApiParam("任务代码")
|
||||
private String taskCode;
|
||||
|
||||
@Column(name="TASK_NAME")
|
||||
@ApiParam("任务名称")
|
||||
private String taskName;
|
||||
|
||||
@Column(name="TASK_DESCRIPTION")
|
||||
@ApiParam("任务描述")
|
||||
private String taskDescription;
|
||||
|
||||
@Column(name="TASK_TYPE")
|
||||
@ApiParam("任务类型")
|
||||
private Integer taskType;
|
||||
|
||||
@Column(name="TASK_MODULE")
|
||||
@ApiParam("任务模块")
|
||||
private String taskModule;
|
||||
|
||||
@Column(name="TASK_CLASS")
|
||||
@ApiParam("任务类名")
|
||||
private String taskClass;
|
||||
|
||||
@Column(name="TASK_PACKAGE")
|
||||
@ApiParam("任务包名")
|
||||
private String taskPackage;
|
||||
|
||||
@Column(name="PCN_NAME")
|
||||
@ApiParam("PCN节点名称")
|
||||
private String pcnName;
|
||||
|
||||
@Column(name="TASK_CYCLE_EXPS")
|
||||
@ApiParam("任务周期表达式")
|
||||
private String taskCycleExps;
|
||||
|
||||
@Column(name="TASK_CYCLE_DESCRIPTION")
|
||||
@ApiParam("任务周期描述")
|
||||
private String taskCycleDescription;
|
||||
|
||||
public int getTaskTypeVal() {
|
||||
return this.taskType == null ? 0 : this.taskType;
|
||||
}
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesNumberRule;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesNumberSerialno;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import javax.persistence.Column;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/23 11:42 AM
|
||||
* @Description:
|
||||
**/
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Api("生成条码模型")
|
||||
public class GenSerialNoModel extends BaseBean {
|
||||
|
||||
@ApiParam("规则代码")
|
||||
private String ruleCode;
|
||||
|
||||
@ApiParam("规则描述")
|
||||
private String ruleDesc;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("客户物料号")
|
||||
private String custPartNo;
|
||||
|
||||
@ApiParam("客户代码")
|
||||
private String custCode;
|
||||
|
||||
@ApiParam("产地")
|
||||
private String prodLocation;
|
||||
|
||||
@ApiParam("前缀")
|
||||
private Integer prefix;
|
||||
|
||||
@ApiParam("编码规则")
|
||||
private String numberRule;
|
||||
|
||||
@ApiParam("序号长度")
|
||||
private Integer serialnoLength;
|
||||
|
||||
@ApiParam("增量")
|
||||
private Integer serialnoIncrement;
|
||||
|
||||
@ApiParam("最大值后循环")
|
||||
private Integer isCycle;
|
||||
|
||||
@ApiParam("当前编号前缀")
|
||||
private String currentNumberPrefix;
|
||||
|
||||
@ApiParam("当前序号")
|
||||
private Integer currentSerialno;
|
||||
|
||||
@ApiParam("当前编号")
|
||||
private String currentNumber;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
/**
|
||||
* @Description: PCN连接状态统计Model
|
||||
* @Reference:
|
||||
* @Author: Crish
|
||||
* @CreateDate:2019-08-07-14:56
|
||||
* @Modify:
|
||||
**/
|
||||
public class MesPcnStatusModel {
|
||||
|
||||
private int healthNodeNumber;
|
||||
|
||||
private int illNodeNumber;
|
||||
}
|
@ -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.MesLabelTemplateParam;
|
||||
|
||||
/**
|
||||
* @Description : 打印模板
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @Date : 2019-08-18 12:03:01.024
|
||||
* @Modify :
|
||||
**/
|
||||
public interface MesLabelTemplateParamRepository extends BaseRepository<MesLabelTemplateParam, 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.MesLabelTemplate;
|
||||
|
||||
/**
|
||||
* @Description : 打印模板
|
||||
* @Reference :
|
||||
* @Author : crish
|
||||
* @Date : 2019-08-18 12:03:01.024
|
||||
* @Modify :
|
||||
**/
|
||||
public interface MesLabelTemplateRepository extends BaseRepository<MesLabelTemplate, Long> {
|
||||
}
|
@ -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.MesNumberRule;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/23 1:22 PM
|
||||
* @Description:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesNumberRuleRepository extends BaseRepository<MesNumberRule, Long> {
|
||||
}
|
@ -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.MesNumberSerialno;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Author: Wynne.Lu
|
||||
* @CreateDate: 2019/8/23 1:23 PM
|
||||
* @Description:
|
||||
**/
|
||||
|
||||
@Repository
|
||||
public interface MesNumberSerialnoRepository extends BaseRepository<MesNumberSerialno, Long> {
|
||||
}
|
@ -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.MesPcnSyncErrorLog;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: crish
|
||||
* @CreateDate:2019-08-23-17:13
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPcnSyncErrorLogRepository extends BaseRepository<MesPcnSyncErrorLog, Long> {
|
||||
}
|
@ -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.MesPcnTask;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :mes-pcn定时任务清单
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-26
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPcnTaskRepository extends BaseRepository<MesPcnTask, Long> {
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package cn.estsh.i3plus.pojo.model.platform;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description: 获取打印模板和打印模板参数表的所有信息
|
||||
* @Reference:
|
||||
* @Author: Crish
|
||||
* @CreateDate:2019-08-23-11:38
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
class LabelTemplateAndParamModel implements Serializable {
|
||||
private static final long serialVersionUID = -3612131411549787983L;
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description 消息样式实体类
|
||||
* @Reference
|
||||
* @Author dragon
|
||||
* @CreateDate 2019/8/26 10:36
|
||||
* @Modify
|
||||
*/
|
||||
@Data
|
||||
public class WmsMessageStyleModel implements Serializable {
|
||||
private static final long serialVersionUID = -810847996371452831L;
|
||||
@ApiParam("任务状态")
|
||||
public Integer taskStatus;
|
||||
@ApiParam("单据明细状态")
|
||||
public Integer odStatus;
|
||||
|
||||
@ApiParam("消息")
|
||||
public String message;
|
||||
|
||||
@ApiParam("前景色")
|
||||
public String foregroundColor;
|
||||
@ApiParam("背景色")
|
||||
public String backgroundColor;
|
||||
@ApiParam("是否粗体")
|
||||
public boolean isBold;
|
||||
@ApiParam("是否斜体")
|
||||
public boolean isItalics;
|
||||
@ApiParam("字号")
|
||||
public Integer fontSize;
|
||||
|
||||
public WmsMessageStyleModel() {
|
||||
}
|
||||
|
||||
public WmsMessageStyleModel(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public WmsMessageStyleModel(String message, double transQty, double actQty) {
|
||||
this.message = message;
|
||||
if (actQty == 0) {//未处理
|
||||
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.CREATE.getValue();
|
||||
} else if (actQty > 0) {
|
||||
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.RECEIPT.getValue();
|
||||
} else if (actQty == transQty) {
|
||||
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.RECEIPT_FINISH.getValue();
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.softswitch.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSslKeyParam;
|
||||
|
||||
/**
|
||||
* @Description : 安全证书参数
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2019-08-21 17:47
|
||||
* @Modify:
|
||||
**/
|
||||
public interface BsSslKeyParamRepository extends BaseRepository<BsSslKeyParam, Long> {
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean.iotio;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : IOT 配置表
|
||||
* @Reference :
|
||||
* @Author : Rock.Yu
|
||||
* @CreateDate : 2019-08-21 18:04
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class SysIotConfig implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 2228817197928571545L;
|
||||
|
||||
private Integer ruid;
|
||||
private String fsbUrl;
|
||||
private String fsbType;
|
||||
private String requesterSystem;
|
||||
private String topicName;
|
||||
private String publishCode;
|
||||
private String interfaceCode;
|
||||
private String tableName;
|
||||
private String columnName;
|
||||
private String seq;
|
||||
private String guid;
|
||||
private String groupColumn;
|
||||
private String uniqueColumn;
|
||||
private String orderColumn;
|
||||
private String organizeCode;
|
||||
}
|
Loading…
Reference in New Issue