jinpengyong
2020-11-27 72026a58219a4ee7cc41a7b37204da372d16d2aa
src/main/resources/mapper/DeviceMapper.xml
@@ -301,4 +301,12 @@
        where mac in
        <foreach item="item" collection="list" index="index" open="(" separator="," close=")">#{item}</foreach>
    </select>
    <select id="getOfflineDevice" 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 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>
</mapper>