From 3c02cf8bdc8181a1f8fc09bdd2608c7b004f942d Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 20 十一月 2024 11:52:19 +0800
Subject: [PATCH] 避免下发页面的新增导致的重复工单
---
ycl-server/src/main/resources/mapper/zgyw/CheckScoreMapper.xml | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/ycl-server/src/main/resources/mapper/zgyw/CheckScoreMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CheckScoreMapper.xml
index 0d89d89..59996de 100644
--- a/ycl-server/src/main/resources/mapper/zgyw/CheckScoreMapper.xml
+++ b/ycl-server/src/main/resources/mapper/zgyw/CheckScoreMapper.xml
@@ -206,4 +206,27 @@
ORDER BY score DESC, tcs.dept_id
</select>
+ <select id="dashboard" resultType="com.ycl.platform.domain.entity.CheckScore">
+ select avg(s.score) as score,d.area as deptName from t_check_score s
+ left join sys_dept d on s.dept_id = d.dept_id
+ <where>
+ s.create_time between #{startTime} and #{endTime}
+ <if test="dataScope == 1">
+ AND s.examine_tag = 0
+ </if>
+ <if test="dataScope == 2">
+ AND s.examine_tag = 1
+ </if>
+ <if test="dataScope == 3">
+ AND s.examine_tag = 2
+ </if>
+ </where>
+ GROUP BY s.dept_id
+ ORDER BY s.create_time DESC
+ </select>
+
+ <select id="selectToday" resultType="com.ycl.platform.domain.entity.CheckScore">
+ select * from t_check_score
+ where date(create_time) = #{day}
+ </select>
</mapper>
--
Gitblit v1.8.0