冀北检测点试运行部分接口提交
This commit is contained in:
@@ -62,4 +62,4 @@ public class SupervisionTempLineDebugParam extends BaseEntity {
|
||||
private List<Integer> statueList;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ public class UserReportNormalParam extends BaseParam {
|
||||
/**
|
||||
* 类型0:方案审查 1:治理工程
|
||||
*/
|
||||
private Boolean type;
|
||||
private Integer type;
|
||||
|
||||
/**
|
||||
* 报告存放路径
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
package com.njcn.supervision.pojo.po.device;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
* @since 2024-05-21
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("supervision_temp_line_run_test")
|
||||
public class SupervisionTempLineRunTest extends BaseEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 流程实例的编号
|
||||
*/
|
||||
private String processInstanceId;
|
||||
|
||||
/**
|
||||
* 在线率
|
||||
*/
|
||||
private Float onlineRate;
|
||||
|
||||
/**
|
||||
* 数据完整性
|
||||
*/
|
||||
private Float integrityRate;
|
||||
|
||||
/**
|
||||
* 数据符合性
|
||||
*/
|
||||
private Float suitRate;
|
||||
|
||||
/**
|
||||
* 1:审批中;2:审批通过;3:审批不通过;4:已取消
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
/**
|
||||
* 0:未试运行 1:试运行中 2.试运行成功 3.试运行异常
|
||||
*/
|
||||
private Integer testRunState;
|
||||
|
||||
|
||||
}
|
||||
@@ -16,8 +16,17 @@ public class SupervisionTempLineDebugVO extends BaseEntity {
|
||||
private String id;
|
||||
private String lineId;
|
||||
private String lineName;
|
||||
private String userName;
|
||||
private String connectedBus;
|
||||
private String monitoringTerminalCode;
|
||||
private String monitoringTerminalName;
|
||||
private String powerSubstationName;
|
||||
private String reason;
|
||||
private String processInstanceId;
|
||||
|
||||
private Integer status;
|
||||
/**
|
||||
* 0:未试运行 1:试运行中 2.试运行成功 3.试运行异常
|
||||
*/
|
||||
private Integer testRunState;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user