zhongrj
2023-10-11 1b3180c31750f0a22840ec56df03d7fa59a57a4e
skjcmanager/skjcmanager-service/skjcmanager-alerts/src/main/java/cn/gistack/alerts/notice/service/impl/NoticeHandle.java
@@ -282,9 +282,9 @@
         // 超汛限水位
         if (s.equals("over_z")) {
            String is_danger_res = "is_danger_res";
            if (jsonArray.getJSONObject(i).getString(is_danger_res).equals("true")) {
            if (null!= jsonArray.getJSONObject(i).getString(is_danger_res) && jsonArray.getJSONObject(i).getString(is_danger_res).equals("true")) {
               format = format  + "控制运用水位" + jsonArray.getJSONObject(i).getString(s);
            } else if (jsonArray.getJSONObject(i).getString(is_danger_res).equals("false")) {
            } else if (null!= jsonArray.getJSONObject(i).getString(is_danger_res) && jsonArray.getJSONObject(i).getString(is_danger_res).equals("false")) {
               format = format  + "汛限水位" + jsonArray.getJSONObject(i).getString(s);
            } else {
               format = format + jsonArray.getJSONObject(i).getString(s);