| | |
| | | |
| | | <!-- 获取设备类型统计数据 --> |
| | | <select id="getDeviceTypeStatistics" resultType="org.sxkj.fw.device.vo.DeviceTypeStatisticsVO"> |
| | | SELECT a.device_type,b.dict_value AS device_type_value,count(*) device_count, (SELECT COUNT(*) FROM ja_fw_device) as total_devices |
| | | SELECT a.device_type,b.dict_value AS device_type_value,count(*) device_count, (SELECT COUNT(*) FROM ja_fw_device where is_deleted = 0) as total_devices |
| | | FROM ja_fw_device a |
| | | LEFT JOIN blade_dict_biz b ON ( |
| | | a.device_type = b.dict_key |
| | |
| | | left join ja_fw_task_schedule fts on d.id = fts.device_id |
| | | <where> |
| | | d.is_deleted = 0 |
| | | and d.longitude is not null |
| | | and d.latitude is not null |
| | | <if test="param2.id != null and param2.id != ''"> |
| | | and d.id = #{param2.id} |
| | | </if> |