Commit b223e700 authored by yating.lin's avatar yating.lin

修改湿度告警信息配置错误:调换上上限和下下限设值

parent 740d502c
Pipeline #838 passed with stage
in 0 seconds
......@@ -55,8 +55,8 @@ public class AlarmRule {
break;
case "h":
if(alarmVo.getHumidityLower() !=null && alarmVo.getHumidityUpper() !=null){
alarmRuleVo.setLowerval(alarmVo.getHumidityUpper());
alarmRuleVo.setUpperval(alarmVo.getHumidityLower());
alarmRuleVo.setLowerval(alarmVo.getHumidityLower());
alarmRuleVo.setUpperval(alarmVo.getHumidityUpper());
alarmRuleVo.setMaxval(alarmVo.getHumidityMax());
alarmRuleVo.setMinval(alarmVo.getHumidityMin());
alarmRuleVo.setMode("full_normal");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment