按灯项目实体创建
parent
571ad144b7
commit
f89090c40e
@ -0,0 +1,219 @@
|
||||
package cn.estsh.i3plus.pojo.andon.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : 安灯队列
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_MANAGE_QUEUE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯队列")
|
||||
public class AndonManageQueue extends BaseBean {
|
||||
|
||||
@Column(name = "ANDON_ORDER_NO")
|
||||
@ApiParam(value = "安灯队列编号")
|
||||
private String andonOrderNo;
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "ACTION_CODE")
|
||||
@ApiParam(value = "安灯动作代码")
|
||||
private String actionCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam(value = "工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_NAME_RDD")
|
||||
@ApiParam(value = "工作中心名称")
|
||||
private String workCenterNameRdd;
|
||||
|
||||
@Column(name = "WORK_CELL_NAME_RDD")
|
||||
@ApiParam(value = "工作单元名称")
|
||||
private String workCellNameRdd;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam(value = "工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "EQUIPMENT_CODE")
|
||||
@ApiParam(value = "设备代码")
|
||||
private String equipmentCode;
|
||||
|
||||
@Column(name = "EQUIPMENT_NAME_RDD")
|
||||
@ApiParam(value = "设备名称")
|
||||
private String equipmentNameRdd;
|
||||
|
||||
@Column(name = "SHIFT_CODE")
|
||||
@ApiParam(value = "班次代码")
|
||||
private String shiftCode;
|
||||
|
||||
@Column(name = "SHIFT_NAME_RDD")
|
||||
@ApiParam(value = "班次名称")
|
||||
private String shiftNameRdd;
|
||||
|
||||
@Column(name = "STATUS_CODE")
|
||||
@ApiParam(value = "安灯状态代码")
|
||||
private String statusCode;
|
||||
|
||||
@Column(name = "SEQ")
|
||||
@ApiParam(value = "序号", example = "1")
|
||||
private Double seq;
|
||||
|
||||
@Column(name = "PRIORITY_LEVEL")
|
||||
@ApiParam(value = "优先级别", example = "1")
|
||||
private Integer priorityLevel;
|
||||
|
||||
@Column(name="CALL_TIME",updatable = false)
|
||||
@ApiParam(value = "呼叫时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String callTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="呼叫时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String callTimeStr;
|
||||
|
||||
@Column(name="CONFIRM_TIME",updatable = false)
|
||||
@ApiParam(value = "响应时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String confirmTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="响应时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String confirmTimeStr;
|
||||
|
||||
@Column(name="RESET_TIME",updatable = false)
|
||||
@ApiParam(value = "解决时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String resetTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="解决时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String resetTimeStr;
|
||||
|
||||
@Column(name = "CALL_USER")
|
||||
@ApiParam(value = "呼叫人")
|
||||
private String callUser;
|
||||
|
||||
@Column(name = "CONFIRM_USER")
|
||||
@ApiParam(value = "响应人")
|
||||
private String confirmUser;
|
||||
|
||||
@Column(name = "RESET_USER")
|
||||
@ApiParam(value = "解决人")
|
||||
private String resetUser;
|
||||
|
||||
@Column(name = "IS_SHIFT_CALL")
|
||||
@ApiParam(value = "是否转呼", example = "1")
|
||||
private Integer isShiftCall;
|
||||
|
||||
@Column(name="SHIFT_CALL_TIME",updatable = false)
|
||||
@ApiParam(value = "转呼时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String shiftCallTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="转呼时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String shiftCallTimeStr;
|
||||
|
||||
@Column(name = "RP_OBJECT_CODE")
|
||||
@ApiParam(value = "转呼对象代码")
|
||||
private String rpObjectCode;
|
||||
|
||||
@Column(name = "SC_RESPONSE_CODE")
|
||||
@ApiParam(value = "转呼响应方式")
|
||||
private String scObjectCode;
|
||||
|
||||
@Column(name = "SC_RP_LEVEL")
|
||||
@ApiParam(value = "转呼通知等级")
|
||||
private String scRpLevel;
|
||||
|
||||
@Column(name = "AC_CODE")
|
||||
@ApiParam(value = "呼叫原因代码")
|
||||
private String acCode;
|
||||
|
||||
@Column(name = "AC_NAME_RDD")
|
||||
@ApiParam(value = "呼叫原因描述")
|
||||
private String acNameRdd;
|
||||
|
||||
@Column(name = "AC_DESC")
|
||||
@ApiParam(value = "呼叫具体原因")
|
||||
private String acDesc;
|
||||
|
||||
@Column(name = "EC_CODE")
|
||||
@ApiParam(value = "事件原因代码")
|
||||
private String ecCode;
|
||||
|
||||
@Column(name = "EC_NAME_RDD")
|
||||
@ApiParam(value = "事件原因描述")
|
||||
private String ecNameRdd;
|
||||
|
||||
@Column(name = "EC_DESC")
|
||||
@ApiParam(value = "事件具体原因")
|
||||
private String ec_desc;
|
||||
|
||||
@Column(name = "EM_CODE")
|
||||
@ApiParam(value = "事件方法代码")
|
||||
private String emCode;
|
||||
|
||||
@Column(name = "EM_NAME_RDD")
|
||||
@ApiParam(value = "事件方法描述")
|
||||
private String emNameRdd;
|
||||
|
||||
@Column(name = "EM_DESC")
|
||||
@ApiParam(value = "事件具体方法")
|
||||
private String emDesc;
|
||||
|
||||
@Column(name = "IS_HALT")
|
||||
@ApiParam(value = "是否停机", example = "1")
|
||||
private Integer isHalt;
|
||||
|
||||
@Column(name = "HALT_CODE")
|
||||
@ApiParam(value = "停机类型")
|
||||
private String haltCode;
|
||||
|
||||
@Column(name = "HALT_DESC")
|
||||
@ApiParam(value = "停机具体原因")
|
||||
private String haltDesc;
|
||||
|
||||
// 是否转呼
|
||||
public Integer getIsShiftCall() {
|
||||
return this.isShiftCall == null ? 0 : this.isShiftCall;
|
||||
}
|
||||
|
||||
// 获取优先级别
|
||||
public Integer getPriorityLevel() {
|
||||
return this.priorityLevel == null ? 0 : this.priorityLevel;
|
||||
}
|
||||
}
|
@ -0,0 +1,219 @@
|
||||
package cn.estsh.i3plus.pojo.andon.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : 安灯记录
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_MANAGE_RECORD")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯记录")
|
||||
public class AndonManageRecord extends BaseBean {
|
||||
|
||||
@Column(name = "ANDON_ORDER_NO")
|
||||
@ApiParam(value = "安灯队列编号")
|
||||
private String andonOrderNo;
|
||||
|
||||
@Column(name = "ALARM_CODE")
|
||||
@ApiParam(value = "安灯类型")
|
||||
private String alarmCode;
|
||||
|
||||
@Column(name = "ACTION_CODE")
|
||||
@ApiParam(value = "安灯动作代码")
|
||||
private String actionCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam(value = "工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_NAME_RDD")
|
||||
@ApiParam(value = "工作中心名称")
|
||||
private String workCenterNameRdd;
|
||||
|
||||
@Column(name = "WORK_CELL_NAME_RDD")
|
||||
@ApiParam(value = "工作单元名称")
|
||||
private String workCellNameRdd;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam(value = "工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "EQUIPMENT_CODE")
|
||||
@ApiParam(value = "设备代码")
|
||||
private String equipmentCode;
|
||||
|
||||
@Column(name = "EQUIPMENT_NAME_RDD")
|
||||
@ApiParam(value = "设备名称")
|
||||
private String equipmentNameRdd;
|
||||
|
||||
@Column(name = "SHIFT_CODE")
|
||||
@ApiParam(value = "班次代码")
|
||||
private String shiftCode;
|
||||
|
||||
@Column(name = "SHIFT_NAME_RDD")
|
||||
@ApiParam(value = "班次名称")
|
||||
private String shiftNameRdd;
|
||||
|
||||
@Column(name = "STATUS_CODE")
|
||||
@ApiParam(value = "安灯状态代码")
|
||||
private String statusCode;
|
||||
|
||||
@Column(name = "SEQ")
|
||||
@ApiParam(value = "序号", example = "1")
|
||||
private Double seq;
|
||||
|
||||
@Column(name = "PRIORITY_LEVEL")
|
||||
@ApiParam(value = "优先级别", example = "1")
|
||||
private Integer priorityLevel;
|
||||
|
||||
@Column(name="CALL_TIME",updatable = false)
|
||||
@ApiParam(value = "呼叫时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String callTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="呼叫时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String callTimeStr;
|
||||
|
||||
@Column(name="CONFIRM_TIME",updatable = false)
|
||||
@ApiParam(value = "响应时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String confirmTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="响应时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String confirmTimeStr;
|
||||
|
||||
@Column(name="RESET_TIME",updatable = false)
|
||||
@ApiParam(value = "解决时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String resetTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="解决时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String resetTimeStr;
|
||||
|
||||
@Column(name = "CALL_USER")
|
||||
@ApiParam(value = "呼叫人")
|
||||
private String callUser;
|
||||
|
||||
@Column(name = "CONFIRM_USER")
|
||||
@ApiParam(value = "响应人")
|
||||
private String confirmUser;
|
||||
|
||||
@Column(name = "RESET_USER")
|
||||
@ApiParam(value = "解决人")
|
||||
private String resetUser;
|
||||
|
||||
@Column(name = "IS_SHIFT_CALL")
|
||||
@ApiParam(value = "是否转呼", example = "1")
|
||||
private Integer isShiftCall;
|
||||
|
||||
@Column(name="SHIFT_CALL_TIME",updatable = false)
|
||||
@ApiParam(value = "转呼时间")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String shiftCallTime;
|
||||
|
||||
@Transient
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value="转呼时间",example = "2018-01-01 01:00:00")
|
||||
@AnnoOutputColumn(hidden = true)
|
||||
public String shiftCallTimeStr;
|
||||
|
||||
@Column(name = "RP_OBJECT_CODE")
|
||||
@ApiParam(value = "转呼对象代码")
|
||||
private String rpObjectCode;
|
||||
|
||||
@Column(name = "SC_RESPONSE_CODE")
|
||||
@ApiParam(value = "转呼响应方式")
|
||||
private String scObjectCode;
|
||||
|
||||
@Column(name = "SC_RP_LEVEL")
|
||||
@ApiParam(value = "转呼通知等级")
|
||||
private String scRpLevel;
|
||||
|
||||
@Column(name = "AC_CODE")
|
||||
@ApiParam(value = "呼叫原因代码")
|
||||
private String acCode;
|
||||
|
||||
@Column(name = "AC_NAME_RDD")
|
||||
@ApiParam(value = "呼叫原因描述")
|
||||
private String acNameRdd;
|
||||
|
||||
@Column(name = "AC_DESC")
|
||||
@ApiParam(value = "呼叫具体原因")
|
||||
private String acDesc;
|
||||
|
||||
@Column(name = "EC_CODE")
|
||||
@ApiParam(value = "事件原因代码")
|
||||
private String ecCode;
|
||||
|
||||
@Column(name = "EC_NAME_RDD")
|
||||
@ApiParam(value = "事件原因描述")
|
||||
private String ecNameRdd;
|
||||
|
||||
@Column(name = "EC_DESC")
|
||||
@ApiParam(value = "事件具体原因")
|
||||
private String ec_desc;
|
||||
|
||||
@Column(name = "EM_CODE")
|
||||
@ApiParam(value = "事件方法代码")
|
||||
private String emCode;
|
||||
|
||||
@Column(name = "EM_NAME_RDD")
|
||||
@ApiParam(value = "事件方法描述")
|
||||
private String emNameRdd;
|
||||
|
||||
@Column(name = "EM_DESC")
|
||||
@ApiParam(value = "事件具体方法")
|
||||
private String emDesc;
|
||||
|
||||
@Column(name = "IS_HALT")
|
||||
@ApiParam(value = "是否停机", example = "1")
|
||||
private Integer isHalt;
|
||||
|
||||
@Column(name = "HALT_CODE")
|
||||
@ApiParam(value = "停机类型")
|
||||
private String haltCode;
|
||||
|
||||
@Column(name = "HALT_DESC")
|
||||
@ApiParam(value = "停机具体原因")
|
||||
private String haltDesc;
|
||||
|
||||
// 是否转呼
|
||||
public Integer getIsShiftCall() {
|
||||
return this.isShiftCall == null ? 0 : this.isShiftCall;
|
||||
}
|
||||
|
||||
// 获取优先级别
|
||||
public Integer getPriorityLevel() {
|
||||
return this.priorityLevel == null ? 0 : this.priorityLevel;
|
||||
}
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
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 : 安灯通知方式
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_RESPONSE")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯通知方式")
|
||||
public class AndonResponse extends BaseBean {
|
||||
|
||||
@Column(name = "RESPONSE_CODE")
|
||||
@ApiParam(value = "通知方式代码")
|
||||
private String responseCode;
|
||||
|
||||
@Column(name = "RESPONSE_NAME")
|
||||
@ApiParam(value = "通知方式名称")
|
||||
private String responseName;
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
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 : 安灯通知对象
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_RESPONSE_OBJECT")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯通知对象")
|
||||
public class AndonResponseObject extends BaseBean {
|
||||
|
||||
@Column(name = "RP_OBJECT_CODE")
|
||||
@ApiParam(value = "对象代码")
|
||||
private String rpObjectCode;
|
||||
|
||||
@Column(name = "RP_OBJECT_NAME")
|
||||
@ApiParam(value = "对象名称")
|
||||
private String rpObjectName;
|
||||
|
||||
@Column(name = "RP_OBJECT_VALUE")
|
||||
@ApiParam(value = "对象值")
|
||||
private String rpObjectValue;
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
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 : 安灯状态
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:16
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name="ANDON_STATUS")
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("安灯状态")
|
||||
public class AndonStatus extends BaseBean {
|
||||
|
||||
@Column(name = "STATUS_CODE")
|
||||
@ApiParam(value = "状态代码")
|
||||
private String statusCode;
|
||||
|
||||
@Column(name = "STATUS_NAME")
|
||||
@ApiParam(value = "状态名称")
|
||||
private String statusName;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonManageQueue;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯队列信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonManagetQueueRepository extends BaseRepository<AndonManageQueue,Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonManageRecord;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯记录信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonManagetRecordRepository extends BaseRepository<AndonManageRecord,Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonResponseObject;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯通知对象信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonResponseObjectRepository extends BaseRepository<AndonResponseObject,Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonResponse;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯通知方式信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonResponseRepository extends BaseRepository<AndonResponse,Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.andon.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.andon.bean.AndonStatus;
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :对象持久层仓用方法控制(安灯状态信息)
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2019-05-10 17:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface IAndonStatusRepository extends BaseRepository<AndonStatus,Long> {
|
||||
}
|
Loading…
Reference in New Issue