Commit b6a13f28 authored by KeYong's avatar KeYong

修改bug

parent 249f7729
...@@ -1029,6 +1029,7 @@ public class FireFightingSystemServiceImpl extends ServiceImpl<FireFightingSyste ...@@ -1029,6 +1029,7 @@ public class FireFightingSystemServiceImpl extends ServiceImpl<FireFightingSyste
map.put("status", m.get("status")); map.put("status", m.get("status"));
map.put("fullName", m.get("fullName")); map.put("fullName", m.get("fullName"));
map.put("updateDate", m.get("updateDate").toString().replace("T", " ")); map.put("updateDate", m.get("updateDate").toString().replace("T", " "));
map.put("realtimeValue", String.valueOf(m.get("realtimeValue")));
resList.add(map); resList.add(map);
i++; i++;
}; };
......
...@@ -5598,6 +5598,7 @@ ...@@ -5598,6 +5598,7 @@
IFNULL( spe.realtime_iot_index_name, '--' ) AS `status`, IFNULL( spe.realtime_iot_index_name, '--' ) AS `status`,
wle.shbz_img shbzImg, wle.shbz_img shbzImg,
ei.is_alarm AS type, ei.is_alarm AS type,
IFNULL( spe.realtime_iot_index_value, '--' ) AS realtimeValue,
IFNULL( ws.full_name, '--' ) AS fullName, IFNULL( ws.full_name, '--' ) AS fullName,
IFNULL( spe.realtime_iot_index_update_date, '--' ) AS updateDate IFNULL( spe.realtime_iot_index_update_date, '--' ) AS updateDate
FROM FROM
......
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