fuliqi
2024-08-08 01a30369e55a754c28dec4939a99e59aefecdc60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ycl.platform.mapper.TMonitorMapper">
 
    <resultMap type="com.ycl.platform.domain.entity.TMonitor" id="TMonitorResult">
        <result property="id" column="id"/>
        <result property="serialNumber" column="serial_number"/>
        <result property="name" column="name"/>
        <result property="siteType" column="site_type"/>
        <result property="macAddr" column="mac_addr"/>
        <result property="ip" column="ip"/>
        <result property="cameraFunType" column="camera_fun_type"/>
        <result property="longitude" column="longitude"/>
        <result property="latitude" column="latitude"/>
        <result property="cameraCaptureArea" column="camera_capture_area"/>
        <result property="onState" column="on_state"/>
        <result property="civilCode" column="civil_code"/>
        <result property="integratedDevice" column="integrated_device"/>
        <result property="cameraBrand" column="camera_brand"/>
        <result property="address" column="address"/>
        <result property="netWorking" column="net_working"/>
        <result property="publicSecurity" column="public_security"/>
        <result property="installedTime" column="installed_time"/>
        <result property="managementUnit" column="management_unit"/>
        <result property="muContactInfo" column="mu_contact_info"/>
        <result property="storageDays" column="storage_days"/>
        <result property="monitorAzimuth" column="monitor_azimuth"/>
        <result property="scenePhotoAddr" column="scene_photo_addr"/>
        <result property="model" column="model"/>
        <result property="siteVulgo" column="site_vulgo"/>
        <result property="cameraType" column="camera_type"/>
        <result property="cameraLightType" column="camera_light_type"/>
        <result property="encodedFormat" column="encoded_format"/>
        <result property="cameraDept" column="camera_dept"/>
        <result property="hybm" column="hybm"/>
        <result property="lxbm" column="lxbm"/>
    </resultMap>
 
    <sql id="selectTMonitorVo">
        select id,
               serial_number,
               name,
               site_type,
               mac_addr,
               ip,
               camera_fun_type,
               longitude,
               latitude,
               camera_capture_area,
               on_state,
               civil_code,
               integrated_device,
               camera_brand,
               address,
               net_working,
               public_security,
               installed_time,
               management_unit,
               mu_contact_info,
               storage_days,
               monitor_azimuth,
               scene_photo_addr,
               model,
               site_vulgo,
               camera_type,
               camera_light_type,
               encoded_format,
               camera_dept,
               hybm,
               lxbm
        from t_monitor
    </sql>
 
    <select id="selectListByIds" resultType="com.ycl.platform.domain.vo.TMonitorVO">
        select m.id, m.serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude,
        camera_capture_area, on_state, civil_code, integrated_device, camera_brand, address, net_working,
        public_security, installed_time, management_unit, mu_contact_info, storage_days
        , monitor_azimuth, scene_photo_addr, model, site_vulgo, camera_type, camera_light_type, encoded_format,
        camera_dept, hybm, lxbm,d.dept_id, d.dept_name from t_monitor m
        left join t_yw_point p on m.serial_number = p.serial_number
        left join sys_dept d on p.dept_id = d.dept_id
        where m.serial_number in
        <foreach collection="list" separator="," item="id" open="(" close=")">
            #{id}
        </foreach>
    </select>
 
    <select id="selectTMonitorList" resultType="com.ycl.platform.domain.vo.TMonitorVO">
        select m.id, m.serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude,
        camera_capture_area, on_state, civil_code, integrated_device, camera_brand, address, net_working,
        public_security, installed_time, management_unit, mu_contact_info, storage_days
        , monitor_azimuth, scene_photo_addr, model, site_vulgo, camera_type, camera_light_type, encoded_format,
        camera_dept, hybm, lxbm,d.dept_id, d.dept_name from t_monitor m
        left join t_yw_point p on m.serial_number = p.serial_number
        left join sys_dept d on p.dept_id = d.dept_id
        <where>
            <if test="serialNumber != null  and serialNumber != ''">and m.serial_number = #{serialNumber}</if>
            <if test="name != null  and name != ''">and name like concat('%', #{name}, '%')</if>
            <if test="siteType != null ">and site_type = #{siteType}</if>
            <if test="macAddr != null  and macAddr != ''">and mac_addr = #{macAddr}</if>
            <if test="ip != null  and ip != ''">and ip = #{ip}</if>
            <if test="cameraFunType != null  and cameraFunType != ''">and camera_fun_type like concat('%',
                #{cameraFunType}, '%')
            </if>
            <if test="longitude != null  and longitude != ''">and longitude = #{longitude}</if>
            <if test="latitude != null  and latitude != ''">and latitude = #{latitude}</if>
            <if test="cameraCaptureArea != null  and cameraCaptureArea != ''">and camera_capture_area =
                #{cameraCaptureArea}
            </if>
            <if test="onState != null ">and on_state = #{onState}</if>
            <if test="civilCode != null  and civilCode != ''">and civil_code = #{civilCode}</if>
            <if test="integratedDevice != null ">and integrated_device = #{integratedDevice}</if>
            <if test="cameraBrand != null ">and camera_brand = #{cameraBrand}</if>
            <if test="address != null  and address != ''">and address like concat('%',#{address},'%')</if>
            <if test="netWorking != null ">and net_working = #{netWorking}</if>
            <if test="publicSecurity != null  and publicSecurity != ''">and public_security = #{publicSecurity}</if>
            <if test="installedTime != null ">and installed_time = #{installedTime}</if>
            <if test="managementUnit != null  and managementUnit != ''">and management_unit = #{managementUnit}</if>
            <if test="muContactInfo != null  and muContactInfo != ''">and mu_contact_info = #{muContactInfo}</if>
            <if test="storageDays != null ">and storage_days = #{storageDays}</if>
            <if test="monitorAzimuth != null ">and monitor_azimuth = #{monitorAzimuth}</if>
            <if test="scenePhotoAddr != null  and scenePhotoAddr != ''">and scene_photo_addr = #{scenePhotoAddr}</if>
            <if test="model != null  and model != ''">and model = #{model}</if>
            <if test="siteVulgo != null  and siteVulgo != ''">and site_vulgo = #{siteVulgo}</if>
            <if test="cameraType != null ">and camera_type = #{cameraType}</if>
            <if test="cameraLightType != null ">and camera_light_type = #{cameraLightType}</if>
            <if test="encodedFormat != null ">and encoded_format = #{encodedFormat}</if>
            <if test="cameraDept != null  and cameraDept != ''">and camera_dept = #{cameraDept}</if>
            <if test="hybm != null  and hybm != ''">and hybm = #{hybm}</if>
            <if test="lxbm != null ">and lxbm = #{lxbm}</if>
            <if test="recovery != null ">and p.recovery = #{recovery}</if>
        </where>
        ${params.dataScope}
    </select>
 
    <select id="selectTMonitorById" parameterType="Long" resultType="com.ycl.platform.domain.vo.TMonitorVO">
        <include refid="selectTMonitorVo"/>
        where id = #{id}
    </select>
 
    <insert id="insertTMonitor" parameterType="com.ycl.platform.domain.entity.TMonitor" useGeneratedKeys="true"
            keyProperty="id">
        insert into t_monitor
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="serialNumber != null and serialNumber != ''">serial_number,</if>
            <if test="name != null and name != ''">name,</if>
            <if test="siteType != null">site_type,</if>
            <if test="macAddr != null and macAddr != ''">mac_addr,</if>
            <if test="ip != null and ip != ''">ip,</if>
            <if test="cameraFunType != null and cameraFunType != ''">camera_fun_type,</if>
            <if test="longitude != null and longitude != ''">longitude,</if>
            <if test="latitude != null and latitude != ''">latitude,</if>
            <if test="cameraCaptureArea != null and cameraCaptureArea != ''">camera_capture_area,</if>
            <if test="onState != null">on_state,</if>
            <if test="civilCode != null and civilCode != ''">civil_code,</if>
            <if test="integratedDevice != null">integrated_device,</if>
            <if test="cameraBrand != null">camera_brand,</if>
            <if test="address != null">address,</if>
            <if test="netWorking != null">net_working,</if>
            <if test="publicSecurity != null">public_security,</if>
            <if test="installedTime != null">installed_time,</if>
            <if test="managementUnit != null">management_unit,</if>
            <if test="muContactInfo != null">mu_contact_info,</if>
            <if test="storageDays != null">storage_days,</if>
            <if test="monitorAzimuth != null">monitor_azimuth,</if>
            <if test="scenePhotoAddr != null">scene_photo_addr,</if>
            <if test="model != null">model,</if>
            <if test="siteVulgo != null">site_vulgo,</if>
            <if test="cameraType != null">camera_type,</if>
            <if test="cameraLightType != null">camera_light_type,</if>
            <if test="encodedFormat != null">encoded_format,</if>
            <if test="cameraDept != null">camera_dept,</if>
            <if test="hybm != null">hybm,</if>
            <if test="lxbm != null">lxbm,</if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="serialNumber != null and serialNumber != ''">#{serialNumber},</if>
            <if test="name != null and name != ''">#{name},</if>
            <if test="siteType != null">#{siteType},</if>
            <if test="macAddr != null and macAddr != ''">#{macAddr},</if>
            <if test="ip != null and ip != ''">#{ip},</if>
            <if test="cameraFunType != null and cameraFunType != ''">#{cameraFunType},</if>
            <if test="longitude != null and longitude != ''">#{longitude},</if>
            <if test="latitude != null and latitude != ''">#{latitude},</if>
            <if test="cameraCaptureArea != null and cameraCaptureArea != ''">#{cameraCaptureArea},</if>
            <if test="onState != null">#{onState},</if>
            <if test="civilCode != null and civilCode != ''">#{civilCode},</if>
            <if test="integratedDevice != null">#{integratedDevice},</if>
            <if test="cameraBrand != null">#{cameraBrand},</if>
            <if test="address != null">#{address},</if>
            <if test="netWorking != null">#{netWorking},</if>
            <if test="publicSecurity != null">#{publicSecurity},</if>
            <if test="installedTime != null">#{installedTime},</if>
            <if test="managementUnit != null">#{managementUnit},</if>
            <if test="muContactInfo != null">#{muContactInfo},</if>
            <if test="storageDays != null">#{storageDays},</if>
            <if test="monitorAzimuth != null">#{monitorAzimuth},</if>
            <if test="scenePhotoAddr != null">#{scenePhotoAddr},</if>
            <if test="model != null">#{model},</if>
            <if test="siteVulgo != null">#{siteVulgo},</if>
            <if test="cameraType != null">#{cameraType},</if>
            <if test="cameraLightType != null">#{cameraLightType},</if>
            <if test="encodedFormat != null">#{encodedFormat},</if>
            <if test="cameraDept != null">#{cameraDept},</if>
            <if test="hybm != null">#{hybm},</if>
            <if test="lxbm != null">#{lxbm},</if>
        </trim>
    </insert>
 
    <update id="updateTMonitor" parameterType="com.ycl.platform.domain.entity.TMonitor">
        update t_monitor
        <trim prefix="SET" suffixOverrides=",">
            <if test="serialNumber != null and serialNumber != ''">serial_number = #{serialNumber},</if>
            <if test="name != null and name != ''">name = #{name},</if>
            <if test="siteType != null">site_type = #{siteType},</if>
            <if test="macAddr != null and macAddr != ''">mac_addr = #{macAddr},</if>
            <if test="ip != null and ip != ''">ip = #{ip},</if>
            <if test="cameraFunType != null and cameraFunType != ''">camera_fun_type = #{cameraFunType},</if>
            <if test="longitude != null and longitude != ''">longitude = #{longitude},</if>
            <if test="latitude != null and latitude != ''">latitude = #{latitude},</if>
            <if test="cameraCaptureArea != null and cameraCaptureArea != ''">camera_capture_area =
                #{cameraCaptureArea},
            </if>
            <if test="onState != null">on_state = #{onState},</if>
            <if test="civilCode != null and civilCode != ''">civil_code = #{civilCode},</if>
            <if test="integratedDevice != null">integrated_device = #{integratedDevice},</if>
            <if test="cameraBrand != null">camera_brand = #{cameraBrand},</if>
            <if test="address != null">address = #{address},</if>
            <if test="netWorking != null">net_working = #{netWorking},</if>
            <if test="publicSecurity != null">public_security = #{publicSecurity},</if>
            <if test="installedTime != null">installed_time = #{installedTime},</if>
            <if test="managementUnit != null">management_unit = #{managementUnit},</if>
            <if test="muContactInfo != null">mu_contact_info = #{muContactInfo},</if>
            <if test="storageDays != null">storage_days = #{storageDays},</if>
            <if test="monitorAzimuth != null">monitor_azimuth = #{monitorAzimuth},</if>
            <if test="scenePhotoAddr != null">scene_photo_addr = #{scenePhotoAddr},</if>
            <if test="model != null">model = #{model},</if>
            <if test="siteVulgo != null">site_vulgo = #{siteVulgo},</if>
            <if test="cameraType != null">camera_type = #{cameraType},</if>
            <if test="cameraLightType != null">camera_light_type = #{cameraLightType},</if>
            <if test="encodedFormat != null">encoded_format = #{encodedFormat},</if>
            <if test="cameraDept != null">camera_dept = #{cameraDept},</if>
            <if test="hybm != null">hybm = #{hybm},</if>
            <if test="lxbm != null">lxbm = #{lxbm},</if>
        </trim>
        where id = #{id}
    </update>
 
    <delete id="deleteTMonitorById" parameterType="Long">
        delete
        from t_monitor
        <where>
            <if test="id !=null">
                id = #{id}
            </if>
        </where>
    </delete>
 
    <delete id="deleteTMonitorByIds" parameterType="String">
        delete from t_monitor where id in
        <foreach item="id" collection="array" open="(" separator="," close=")">
            #{id}
        </foreach>
    </delete>
 
    <select id="getVideoCount" resultType="java.util.Map">
        SELECT count(*) AS totalPosts,
        IFNULL(SUM(IF(on_state = 1, 1, 0)), 0) AS totalMembers,
        IFNULL(SUM(IF(on_state = 2, 1, 0)), 0) AS postsPercentage,
        IFNULL(ROUND(SUM(IF(on_state = 1, 1, 0)) / count(*) * 100, 2), 0) as viewsPercentage
        FROM t_monitor m
        left join t_yw_point p on m.serial_number = p.serial_number
        left join sys_dept d on p.dept_id = d.dept_id
        <where>
            camera_fun_type like concat('%', #{cameraFunType}, '%')
        </where>
        ${params.dataScope}
    </select>
 
    <select id="recoveryException" resultType="java.util.Map">
        <![CDATA[
        SELECT count(*)                                                          AS totalPosts,
               IFNULL(SUM(IF(on_state = 1, 1, 0)), 0)                            AS totalMembers,
               IFNULL(SUM(IF(on_state = 2, 1, 0)), 0)                            AS postsPercentage,
               IFNULL(ROUND(SUM(IF(on_state = 1, 1, 0)) / count(*) * 100, 2), 0) as viewsPercentage
        FROM t_monitor t
                 LEFT JOIN t_yw_point p ON t.serial_number = p.serial_number
        WHERE p.recovery = 1
           OR TIMESTAMPDIFF(DAY, p.recovery_time, NOW()) <= #{time}
        ]]>
    </select>
 
    <select id="selectRecoveryMonitor" resultType="com.ycl.platform.domain.vo.TMonitorVO">
        <![CDATA[
        SELECT t.id,
               p.serial_number,
               name,
               site_type,
               mac_addr,
               ip,
               camera_fun_type,
               longitude,
               latitude,
               camera_capture_area,
               on_state,
               civil_code,
               integrated_device,
               camera_brand,
               address,
               net_working,
               public_security,
               installed_time,
               management_unit,
               mu_contact_info,
               storage_days,
               monitor_azimuth,
               scene_photo_addr,
               model,
               site_vulgo,
               camera_type,
               camera_light_type,
               encoded_format,
               camera_dept,
               hybm,
               lxbm
        FROM t_monitor t
                 LEFT JOIN t_yw_point p ON t.serial_number = p.serial_number
        WHERE TIMESTAMPDIFF(DAY, p.recovery_time, NOW()) <= #{time}
        ]]>
    </select>
 
    <select id="home" resultType="java.util.Map">
        SELECT
        u.unit_name AS name,
        CONCAT(MONTH(w.create_time), '月') AS months,
        COUNT(w.id) AS num1,
        COUNT(m.id) - COUNT(w.id) AS num2
        FROM
        t_monitor m
        LEFT JOIN t_yw_point p ON m.serial_number = p.serial_number
        LEFT JOIN t_yw_unit u ON p.unit_id = u.id
        LEFT JOIN t_work_order w ON w.serial_number = p.serial_number
        WHERE u.id = #{unitId} AND MONTH(w.create_time) IS NOT NULL
        <if test="dateRange != null and dateRange.size > 0">
            AND DATE_FORMAT(w.create_time, '%Y-%m') BETWEEN #{dateRange[0]} AND #{dateRange[1]}
        </if>
        GROUP BY months
        ORDER BY months
    </select>
 
    <select id="monitorTotal" resultType="com.ycl.platform.domain.vo.screen.MonitorTotalVO">
        SELECT
            '视频' as type,
            COUNT(p1.id) AS totalNum,
            COUNT(p2.id) AS errorNum,
            COUNT(p1.id) - COUNT(p2.id) AS normalNum
        FROM t_monitor
        LEFT JOIN t_yw_point p1 ON t_monitor.serial_number = p1.serial_number <if test="dataScope == 1"> AND p1.province_tag = 'province' </if>
        LEFT JOIN t_yw_point p2 ON t_monitor.serial_number = p2.serial_number AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if>
        WHERE INSTR(camera_fun_type, 1)
        <if test="deptId != null"> AND p1.dept_id = #{deptId} AND p2.dept_id = #{deptId} </if>
        UNION ALL
        SELECT
            '车辆' as type,
            COUNT(p1.id) AS totalNum,
            COUNT(p2.id) AS errorNum,
            COUNT(p1.id) - COUNT(p2.id) AS normalNum
        FROM t_monitor
        LEFT JOIN t_yw_point p1 ON t_monitor.serial_number = p1.serial_number <if test="dataScope == 1"> AND p1.province_tag = 'province' </if>
        LEFT JOIN t_yw_point p2 ON t_monitor.serial_number = p2.serial_number AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if>
        WHERE INSTR(camera_fun_type, 2)
        <if test="deptId != null"> AND p1.dept_id = #{deptId} AND p2.dept_id = #{deptId} </if>
        UNION ALL
        SELECT
            '人脸' as type,
            COUNT(p1.id) AS totalNum,
            COUNT(p2.id) AS errorNum,
            COUNT(p1.id) - COUNT(p2.id) AS normalNum
        FROM t_monitor
        LEFT JOIN t_yw_point p1 ON t_monitor.serial_number = p1.serial_number <if test="dataScope == 1"> AND p1.province_tag = 'province' </if>
        LEFT JOIN t_yw_point p2 ON t_monitor.serial_number = p2.serial_number AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if>
        WHERE INSTR(camera_fun_type, 3)
        <if test="deptId != null"> AND p1.dept_id = #{deptId} AND p2.dept_id = #{deptId} </if>
    </select>
 
    <select id="monitorRate" resultType="com.ycl.platform.domain.vo.screen.MonitorRateVO">
        SELECT
            *
        FROM
            -- 人脸设备
            (
                SELECT
                    d.area,
                    IFNULL(ROUND((COUNT(m.id) - COUNT(m2.id)) / COUNT(m.id) * 100, 2), 0) AS faceRate,
                    COUNT(m.id) - COUNT(m2.id) AS faceNormalNum,
                    COUNT(m2.id) AS faceErrorNum
                FROM
                    sys_dept d
                        LEFT JOIN t_yw_point p ON p.dept_id = d.dept_id AND p.deleted = 0 <if test="dataScope == 1"> AND p.province_tag = 'province' </if>
                        LEFT JOIN t_yw_point p2 ON p2.dept_id = d.dept_id AND p2.deleted = 0 AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if>
                        LEFT JOIN t_monitor m ON m.serial_number = p.serial_number AND INSTR(m.camera_fun_type, 1)
                        LEFT JOIN t_monitor m2 ON m2.serial_number = p2.serial_number AND INSTR(m2.camera_fun_type, 1)
                WHERE d.del_flag = 0 AND d.area IS NOT NULL
                GROUP BY d.area, d.dept_id
                ORDER BY d.dept_id
            ) a
        INNER JOIN
            -- 车辆设备
            (
                SELECT
                    d.area,
                    IFNULL(ROUND((COUNT(m.id) - COUNT(m2.id)) / COUNT(m.id) * 100, 2), 0) AS carRate,
                    COUNT(m.id) - COUNT(m2.id) AS carNormalNum,
                    COUNT(m2.id) AS carErrorNum
                FROM
                    sys_dept d
                        LEFT JOIN t_yw_point p ON p.dept_id = d.dept_id AND p.deleted = 0 <if test="dataScope == 1"> AND p.province_tag = 'province' </if>
                        LEFT JOIN t_yw_point p2 ON p2.dept_id = d.dept_id AND p2.deleted = 0 AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if>
                        LEFT JOIN t_monitor m ON m.serial_number = p.serial_number AND INSTR(m.camera_fun_type, 2)
                        LEFT JOIN t_monitor m2 ON m2.serial_number = p2.serial_number AND INSTR(m2.camera_fun_type, 2)
                WHERE d.del_flag = 0 AND d.area IS NOT NULL
                GROUP BY d.area, d.dept_id
                ORDER BY d.dept_id
            ) b ON a.area = b.area
        INNER JOIN
            -- 视频设备
            (
                SELECT
                    d.area,
                    IFNULL(ROUND((COUNT(m.id) - COUNT(m2.id)) / COUNT(m.id) * 100, 2), 0) AS videoRate,
                    COUNT(m.id) - COUNT(m2.id) AS videoNormalNum,
                    COUNT(m2.id) AS videoErrorNum
                FROM
                    sys_dept d
                        LEFT JOIN t_yw_point p ON p.dept_id = d.dept_id AND p.deleted = 0 <if test="dataScope == 1"> AND p.province_tag = 'province' </if>
                        LEFT JOIN t_yw_point p2 ON p2.dept_id = d.dept_id AND p2.deleted = 0 AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if>
                        LEFT JOIN t_monitor m ON m.serial_number = p.serial_number AND INSTR(m.camera_fun_type, 3)
                        LEFT JOIN t_monitor m2 ON m2.serial_number = p2.serial_number AND INSTR(m2.camera_fun_type, 3)
                WHERE d.del_flag = 0 AND d.area IS NOT NULL
                GROUP BY d.area, d.dept_id
                ORDER BY d.dept_id
            ) c ON a.area = c.area
    </select>
 
</mapper>