1.1.预警/告警事务的生成 基础代码提交

This commit is contained in:
Lee
2023-03-16 14:24:07 +08:00
parent 93228bf1ec
commit 559e44a32e
10 changed files with 294 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
package com.njcn.process.pojo.po;
import com.baomidou.mybatisplus.annotation.TableName;
import com.njcn.db.bo.BaseEntity;
import lombok.Data;
/**
* <p>
* 告警/预警监测点列表
* </p>
*
* @author lxp
* @since 2023-03-16
*/
@Data
@TableName("ths_over_run_log")
public class ThsOverRunLog extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 主键id
*/
private String id;
/**
* 监测点ID
*/
private String lineIndex;
/**
* 名称变电站_监测点_日期_id
*/
private String name;
/**
* 技术监督Guid
*/
private String supIndex;
/**
* 描述
*/
private String describe;
/**
* 预/告警单
*/
private String alarmTicket;
/**
* 反馈单
*/
private String feedback;
/**
* 测试报告
*/
private String testReport;
/**
* 整改通知单
*/
private String reviseNotice;
/**
* 整改通知反馈单
*/
private String reviseFeedback;
}

View File

@@ -0,0 +1,75 @@
package com.njcn.process.pojo.po;
import com.baomidou.mybatisplus.annotation.TableName;
import com.njcn.db.bo.BaseEntity;
import lombok.Data;
import java.util.Date;
/**
* <p>
*
* </p>
*
* @author lxp
* @since 2023-03-16
*/
@Data
@TableName("ths_supervise")
public class ThsSupervise extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 技术监督Guid
*/
private String supIndex;
/**
* 技术监督名称
*/
private String name;
/**
* 创建用户(pqs_user外键)
*/
private String createUser;
/**
* 处理用户
*/
private String modifyUser;
/**
* 处理时间
*/
private Date modifyTime;
/**
* 类型0预警1告警
*/
private Integer type;
/**
* 上一级处理处理人员
*/
private String upUser;
/**
* 下一级处理人员
*/
private String nextUser;
/**
* 进度0开始1预/告警单下发2反馈单上传3现场测试4整改通知单下发:5整改通知反馈单6完结默认进度为开始
*/
private Integer progress;
/**
* 描述
*/
private String describe;
}