1.异常数据统计增加暂态信息

This commit is contained in:
wr
2025-11-26 09:58:49 +08:00
parent 279c5c7642
commit 075dfc19d6
4 changed files with 28 additions and 2 deletions

View File

@@ -55,7 +55,11 @@ public interface Param {
//长时间闪变值
String pst = "DataFlicker-pst";
//电压暂降
String Voltage_Dip = "r_mp_event_detail-Voltage_Dip";
//电压暂升
String Voltage_Rise = "r_mp_event_detail-Voltage_Rise";
String pf = "DataHarmPowerP-pf";

View File

@@ -137,6 +137,16 @@ public class PqDataVerifyBak {
*/
private Integer pst;
/**
* 电压暂降(0:正常 1:异常)
*/
private Integer dip;
/**
* 电压暂升(0:正常 1:异常)
*/
private Integer rise;
/**
* 判断所有指标 0:无异常 1:有异常
*/

View File

@@ -50,6 +50,8 @@ public class DetailAbnormalVO {
private String avg;
//CP95
private String cp95;
//幅值
private String featureAmplitude;
}