终端异常统计接口开发

This commit is contained in:
zhuxinyu
2023-03-28 11:34:18 +08:00
parent d84337a03a
commit c43d58051b
16 changed files with 889 additions and 20 deletions

View File

@@ -0,0 +1,78 @@
package com.njcn.device.pq.pojo.po;
import com.njcn.db.bo.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = true)
public class TopMsgPO extends BaseEntity {
private String cityName;
private String subName;
private String deviceName;
/**
* 终端异常设备数量
*/
private Integer deviceAbnormalNum;
private String lineGrade;
/**
* 日期
*/
private String time;
/**
* 装置id
*/
private String devId;
/**
* 通信中断次数
*/
private Integer comOutCount;
/**
* 通信中断时间段描述
*/
private String comOutDesc;
/**
* 数据完整性标识 0.不达标 1.达标
*/
private String integrityFlag;
/**
* 数据完整性
*/
private Integer integrityValue;
/**
* 告警次数
*/
private Integer alarmCount;
/**
* 告警描述
*/
private String alarmDesc;
/**
* 流量超标标识 0.不达标 1.达标
*/
private Integer flowFlag;
/**
* 流量使用百分比
*/
private float flowValue;
/**
* 状态 0.删除 1.正常
*/
private String state;
}