From 27e913d6d28a9cfa0785d15453a4de10fd36ce6d Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 10 二月 2025 11:17:59 +0800 Subject: [PATCH] 首页录像统计加上间歇 --- ycl-server/src/main/resources/mapper/zgyw/CheckIndexFaceMapper.xml | 105 +++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 82 insertions(+), 23 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/CheckIndexFaceMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CheckIndexFaceMapper.xml index abd8b07..e3e9c64 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/CheckIndexFaceMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/CheckIndexFaceMapper.xml @@ -8,6 +8,8 @@ <result property="id" column="id" /> <result property="deptId" column="dept_id" /> <result property="examineTag" column="examine_tag" /> + <result property="num" column="num" /> + <result property="score" column="score" /> <result property="createTime" column="create_time" /> <result property="viewConnectStability" column="view_connect_stability" /> <result property="siteOnline" column="site_online" /> @@ -24,23 +26,37 @@ </sql> <select id="selectCheckIndexFaceList" resultMap="CheckIndexFaceResult"> - select tcif.*,sd.dept_name,tcs.score + select tcif.*,sd.dept_name,tcs.score,IFNULL(tcs.device_count,0) as num from t_check_index_face tcif left join sys_dept sd on tcif.dept_id = sd.dept_id left join t_check_score tcs on tcif.id = tcs.index_id <where> + tcs.examine_category = 3 <if test="deptId != null "> and tcif.dept_id = #{deptId}</if> - <if test="examineTag != null "> and examine_tag = #{examineTag}</if> + <if test="examineTag != null "> and tcif.examine_tag = #{examineTag}</if> + <if test="quarter != null and quarter.size > 0"> + and date_format(tcs.create_time, '%Y-%m') between #{quarter[0]} and #{quarter[1]} + </if> <if test="date != null "> and date_format(tcif.create_time,'%Y-%m') = #{date}</if> <if test="day != null "> and date(tcif.create_time) = #{day}</if> - <if test="params.publish != null and params.publish != ''">and publish = #{params.publish}</if> + <if test="params.publish != null and params.publish != ''">and tcif.publish = #{params.publish}</if> <if test="deptIds != null ">and tcif.dept_id in <foreach collection="deptIds" separator="," open="(" close=")" item="deptId"> #{deptId} </foreach> </if> - <if test="examineTags != null and examineTags.size()>0">and tcif.examine_tag in - <foreach collection="examineTags" separator="," open="(" close=")" item="examineTag"> - #{examineTag} + </where> + order by tcif.examine_tag desc,sd.area_code,tcif.create_time + </select> + + <select id="getCheckIndexFaceList" resultMap="CheckIndexFaceResult"> + select tcif.*,sd.dept_name + from t_check_index_face tcif left join sys_dept sd on tcif.dept_id = sd.dept_id + <where> + <if test="examineTag != null "> and tcif.examine_tag = #{examineTag}</if> + <if test="day != null "> and date(tcif.create_time) = #{day}</if> + <if test="deptIds != null ">and tcif.dept_id in + <foreach collection="deptIds" separator="," open="(" close=")" item="deptId"> + #{deptId} </foreach> </if> </where> @@ -115,6 +131,65 @@ </select> <select id="dashboard" resultType="com.ycl.platform.domain.entity.CheckIndexFace"> +<!-- SELECT--> +<!-- IFNULL(ROUND(AVG(view_connect_stability * 100), 0), 0) AS view_connect_stability,--> +<!-- IFNULL(ROUND(AVG(site_online * 100), 0), 0) AS site_online,--> +<!-- IFNULL(ROUND(AVG(device_directory_consistent * 100), 0), 0) AS device_directory_consistent,--> +<!-- IFNULL(ROUND(AVG(face_information_collection_accuracy * 100), 0), 0) AS face_information_collection_accuracy,--> +<!-- IFNULL(ROUND(AVG(face_picture_qualification * 100), 0), 0) AS face_picture_qualification,--> +<!-- IFNULL(ROUND(AVG(face_timing_accuracy * 100), 0), 0) AS face_timing_accuracy,--> +<!-- IFNULL(ROUND(AVG(face_upload_timeliness * 100), 0), 0) AS face_upload_timeliness,--> +<!-- IFNULL(ROUND(AVG(face_picture_availability * 100), 0), 0) AS face_picture_availability--> +<!-- FROM--> +<!-- t_check_index_face--> +<!-- <where>--> +<!-- <if test="deptId != null">--> +<!-- AND dept_id = #{deptId}--> +<!-- </if>--> +<!-- <if test="dataScope == 1">--> +<!-- AND examine_tag = 0--> +<!-- </if>--> +<!-- <if test="dataScope == 2">--> +<!-- AND examine_tag = 1--> +<!-- </if>--> +<!-- <if test="dataScope == 3">--> +<!-- AND examine_tag = 2--> +<!-- </if>--> +<!-- </where>--> +<!-- ORDER BY--> +<!-- create_time DESC--> +<!-- <if test="deptId == null">--> +<!-- LIMIT 7--> +<!-- </if>--> +<!-- <if test="deptId != null">--> +<!-- LIMIT 1--> +<!-- </if>--> + + WITH LatestRecords AS ( + SELECT * + FROM t_check_index_face + <where> + <if test="deptId != null"> + AND dept_id = #{deptId} + </if> + <if test="dataScope == 1"> + AND examine_tag = 0 + </if> + <if test="dataScope == 2"> + AND examine_tag = 1 + </if> + <if test="dataScope == 3"> + AND examine_tag = 2 + </if> + </where> + ORDER BY create_time DESC + <if test="deptId == null"> + LIMIT 7 + </if> + <if test="deptId != null"> + LIMIT 1 + </if> + ) SELECT IFNULL(ROUND(AVG(view_connect_stability * 100), 0), 0) AS view_connect_stability, IFNULL(ROUND(AVG(site_online * 100), 0), 0) AS site_online, @@ -125,22 +200,6 @@ IFNULL(ROUND(AVG(face_upload_timeliness * 100), 0), 0) AS face_upload_timeliness, IFNULL(ROUND(AVG(face_picture_availability * 100), 0), 0) AS face_picture_availability FROM - t_check_index_face - <where> - <if test="deptId != null"> - AND dept_id = #{deptId} - </if> - <if test="dataScope == 1"> - AND examine_tag = 1 - </if> - </where> - ORDER BY - create_time DESC - <if test="deptId == null"> - LIMIT 7 - </if> - <if test="deptId != null"> - LIMIT 1 - </if> + LatestRecords; </select> </mapper> -- Gitblit v1.8.0