zbj//1.单位指标告警统计_周统计 (主/配网)算法
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.njcn.prepare.harmonic.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* @TableName r_stat_pw_alarm_count_w
|
||||
*/
|
||||
@Data
|
||||
@TableName("r_stat_pw_alarm_count_w")
|
||||
public class RStatPwAlarmCountWPO {
|
||||
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 生成数据的时间,每周统计一次
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 在线监测点数
|
||||
*/
|
||||
@TableField(value = "online_monitor_count")
|
||||
private Integer onlineMonitorCount;
|
||||
|
||||
/**
|
||||
* 告警监测点数
|
||||
*/
|
||||
@TableField(value = "alarm_monitor_count")
|
||||
private Integer alarmMonitorCount;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
package com.njcn.prepare.harmonic.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
* @TableName r_stat_zw_alarm_count_w
|
||||
*/
|
||||
@Data
|
||||
@TableName("r_stat_zw_alarm_count_w")
|
||||
public class RStatZwAlarmCountWPO {
|
||||
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
@MppMultiId(value = "org_no")
|
||||
private String orgNo;
|
||||
|
||||
/**
|
||||
* 生成数据的时间,每周统计一次
|
||||
*/
|
||||
@MppMultiId(value = "data_date")
|
||||
private Date dataDate;
|
||||
|
||||
/**
|
||||
* 有效监测点数量
|
||||
*/
|
||||
@TableField(value = "monitor_effective_count")
|
||||
private Integer monitorEffectiveCount;
|
||||
|
||||
/**
|
||||
* 告警4次及以上监测点数量
|
||||
*/
|
||||
@TableField(value = "warn_monitor_count")
|
||||
private Integer warnMonitorCount;
|
||||
|
||||
/**
|
||||
* 级别较差监测点数量
|
||||
*/
|
||||
@TableField(value = "monitor_grade_count")
|
||||
private Integer monitorGradeCount;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user