From 96d7cf8eb72810dfa5921a585d64b5ce9909d416 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Wed, 16 Dec 2020 16:53:25 +0800 Subject: [PATCH] 北京疾控中心设备掉线报警邮件发送 --- src/main/resources/mapper/DeviceMapper.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/DeviceMapper.xml b/src/main/resources/mapper/DeviceMapper.xml index 75ff790..a455140 100644 --- a/src/main/resources/mapper/DeviceMapper.xml +++ b/src/main/resources/mapper/DeviceMapper.xml @@ -309,4 +309,13 @@ (SELECT id FROM monitor_point WHERE city_code!=130900 or (city_code=130900 and organization_id in (60, 65, 159, 165, 166) and id!=56 and id!=83 and id!=84)) and mac not in (SELECT mac FROM special_device_config); </select> + + <select id="getOfflineDeviceOfDiseaseCenter" resultType="java.util.Map"> + SELECT name,mac + FROM `device` + WHERE state=4 and is_delete=0 + and monitor_point_id in( + SELECT id FROM monitor_point WHERE organization_id=#{orgId} + ); + </select> </mapper> \ No newline at end of file -- Gitblit v1.8.0