Explorar el Código

保持力改为默认值无效.

git-svn-id: https://202.107.226.68:8443/svn/Services/ResistanceMonitor@63 a05970a1-87b9-9d4f-9ee5-fa77e2ec115b
shenchunzhong hace 1 año
padre
commit
f4659aff25
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      4.Data/ResistAlarm.h

+ 3 - 3
4.Data/ResistAlarm.h

@@ -71,15 +71,15 @@ typedef struct tagConvertResist_Over_Limit : public tagBaseInfo
 typedef struct tagRetension_Force_Drop : public  tagBaseInfo
 {
 	int dw_alarm_low_drop = INT_MIN;    //最低预警值
-	int alarm_low_percent = 20;    //下降百分比报警值
-	int alarm_high_percent = 40;    //上升百分比报警值
+	int alarm_low_percent = INT_MIN;    //下降百分比报警值
+	int alarm_high_percent = INT_MIN;    //上升百分比报警值
 
 	time_t tLastCalc = 0;				//上一次计算时间(不参与配置)   //是不是可以用 tmLastCheckTime
 
 	tagRetension_Force_Drop()
 	{
 		type = eZL_ALARMTYPE::RETENSION_FORCE;
-		enable = true;
+		enable = false;
 	}
 
 }RETENSION_FORCE_DROP;