From 95f69d1183a56f5768e6d56d043b0c6e5a878bb5 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 04 十二月 2024 21:30:26 +0800
Subject: [PATCH] 空指针校验

---
 ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml |   59 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 53 insertions(+), 6 deletions(-)

diff --git a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml
index af04ecb..475d5b3 100644
--- a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml
+++ b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml
@@ -128,7 +128,7 @@
         left join (
         WITH cte AS (
         SELECT *,row_number() OVER(PARTITION BY serial_number ORDER BY create_time DESC) rn FROM t_work_order
-        WHERE deleted = 0 AND status == 'AUDITING_SUCCESS'
+        WHERE deleted = 0 AND status = 'AUDITING_SUCCESS'
         ) SELECT * FROM cte WHERE rn=1
         ) w on m.serial_number = w.serial_number and w.deleted = 0
         left join t_yw_unit u on p.unit_id = u.id and u.deleted = 0
@@ -178,6 +178,32 @@
             <if test="lxbm != null ">and lxbm = #{lxbm}</if>
 <!--            <if test="recovery != null ">and p.recovery = #{recovery}</if>-->
             ${params.dataScope}
+        </where>
+    </select>
+
+    <select id="exportTMonitorList" resultType="com.ycl.platform.domain.excel.TMonitorExp">
+        select m.id, m.serial_number, name, ip, camera_fun_type,p.online as onState,
+        d.dept_name, p.id as pointId,p.province_tag,p.dept_tag,p.important_tag,p.important_command_image_tag,u.unit_name as managementUnit
+        from t_monitor m
+        left join t_yw_point p on m.serial_number = p.serial_number and p.deleted = 0
+        left join sys_dept d on p.dept_id = d.dept_id and d.del_flag = 0
+        left join t_yw_unit u on p.unit_id = u.id and u.deleted = 0
+        <where>
+            p.examine_status = 1
+            <if test="serialNumber != null  and serialNumber != ''">and m.serial_number = #{serialNumber}</if>
+            <if test="name != null  and name != ''">
+                and (name like concat('%', #{name}, '%')
+                or m.ip like concat('%', #{name}, '%')
+                or m.serial_number like concat('%', #{name}, '%')
+                or u.unit_name like concat('%', #{name}, '%'))
+            </if>
+            <if test="provinceTag != null ">and p.province_tag = #{provinceTag}</if>
+            <if test="deptTag != null ">and p.dept_tag = #{deptTag}</if>
+            <if test="cameraFunType != null  and cameraFunType != ''">and camera_fun_type like concat('%',
+                #{cameraFunType}, '%')
+            </if>
+            <if test="onState != null ">and p.online = #{onState}</if>
+            <if test="civilCode != null  and civilCode != ''">and civil_code = #{civilCode}</if>
         </where>
     </select>
 
@@ -683,18 +709,39 @@
         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 p.online != 0 and p.examine_status = 1
+        where p.online != 0 and p.examine_status = 1
     </select>
 
     <update id="updateOnline">
         <foreach collection="onlineList" item="online" separator=";">
             UPDATE
-                t_yw_point
+            t_yw_point
             SET
-                online = #{online.online},
-                update_time = #{online.updateTime}
+            online = #{online.online},
+            update_time = #{online.updateTime}
             WHERE
-                EXISTS (SELECT 1 FROM t_monitor WHERE ip = #{online.ip} AND t_monitor.serial_number = t_yw_point.serial_number )
+            EXISTS (SELECT 1 FROM t_monitor
+            WHERE ip = #{online.ip}
+            AND t_monitor.serial_number = t_yw_point.serial_number )
         </foreach>
     </update>
+    <update id="batchUpdateOnline">
+            UPDATE
+            t_yw_point p
+            LEFT JOIN t_monitor m on p.serial_number = m.serial_number
+            SET
+            p.online = #{online},
+            p.update_time = #{date}
+            WHERE m.ip in
+            <foreach collection="ipList" open="(" close=")" separator="," item="ip">
+                #{ip}
+            </foreach>
+    </update>
+    <select id="selectCarOrFace" resultType="com.ycl.platform.domain.entity.TMonitor">
+        select m.*
+        from t_monitor m
+        left join t_yw_point p
+        on m.serial_number = p.serial_number
+        where (m.camera_fun_type = '2' or m.camera_fun_type = '3') and p.examine_status = 1
+    </select>
 </mapper>

--
Gitblit v1.8.0