From eb8c2e062f554aa250d660ac798cdb1de7eeeb99 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 12 十二月 2024 00:14:15 +0800 Subject: [PATCH] 首页抓拍量按钮 --- ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml index d522659..57197dc 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml @@ -111,7 +111,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 @@ -141,9 +141,9 @@ #{cameraCaptureArea} </if> <if test="time !=null and time !=''">and TIMESTAMPDIFF(DAY, p.recovery_time, NOW()) <![CDATA[<=]]> #{time}</if> - <if test="onState != null and onState = 1">and (p.online = #{onState} and p.ping_online = #{onState})</if> - <if test="onState != null and onState = -1">and (p.online = #{onState} or p.ping_online = #{onState})</if> - <if test="onState != null and onState = 0">and (p.online = #{onState} and p.ping_online = #{onState})</if> + <if test="onState != null and onState == 1">and (p.online = #{onState} and p.ping_online = #{onState})</if> + <if test="onState != null and onState == -1">and (p.online = #{onState} or p.ping_online = #{onState})</if> + <if test="onState != null and onState == 0">and (p.online = #{onState} and p.ping_online = #{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> @@ -197,9 +197,9 @@ <if test="cameraFunType != null and cameraFunType != ''">and camera_fun_type like concat('%', #{cameraFunType}, '%') </if> - <if test="onState != null and onState = 1">and (p.online = #{onState} and p.ping_online = #{onState})</if> - <if test="onState != null and onState = -1">and (p.online = #{onState} or p.ping_online = #{onState})</if> - <if test="onState != null and onState = 0">and (p.online = #{onState} and p.ping_online = #{onState})</if> + <if test="onState != null and onState == 1">and (p.online = #{onState} and p.ping_online = #{onState})</if> + <if test="onState != null and onState == -1">and (p.online = #{onState} or p.ping_online = #{onState})</if> + <if test="onState != null and onState == 0">and (p.online = #{onState} and p.ping_online = #{onState})</if> <if test="civilCode != null and civilCode != ''">and civil_code = #{civilCode}</if> </where> </select> @@ -210,7 +210,7 @@ , 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, CASE - WHEN p.provnce_tag_video = 1 OR p.provnce_tag_car = 1 OR p.provnce_tag_face = 1 THEN 1 + WHEN p.province_tag_video = 1 OR p.province_tag_car = 1 OR p.province_tag_face = 1 THEN 1 ELSE 0 END AS province_tag,p.dept_tag from t_monitor m -- Gitblit v1.8.0