From 37d9180210b27a1940a563321d6353101536b394 Mon Sep 17 00:00:00 2001 From: DELL <1525436766@qq.com> Date: 星期六, 19 十月 2024 17:31:34 +0800 Subject: [PATCH] V1.107 2024-10-17 lijun 1.插入默认告警参数-模块告警 2.根据告警参数中的配置,进行电源告警触发,参数表中的紧急告警主动赋予通用逻辑 --- IEC61850_ForPowerSupply_ForNW/src/com/power/alarm/Alarm_Param.java | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/IEC61850_ForPowerSupply_ForNW/src/com/power/alarm/Alarm_Param.java b/IEC61850_ForPowerSupply_ForNW/src/com/power/alarm/Alarm_Param.java index d72395f..e4f2a17 100644 --- a/IEC61850_ForPowerSupply_ForNW/src/com/power/alarm/Alarm_Param.java +++ b/IEC61850_ForPowerSupply_ForNW/src/com/power/alarm/Alarm_Param.java @@ -1,6 +1,9 @@ package com.power.alarm; public class Alarm_Param { + public static final int Alm_Level_Emergency = 1; //紧急告警 + public static final int Alm_Level_Major = 2; //重大告警 + public static final int Alm_Level_General = 3; //一般告警 public int alarm_id; //告警ID号,告警时无需管级别名称,前台通过ID自动查表 -- Gitblit v1.9.1