From 33fdb033e0a6b5ef6b2f8ac5fc67ad8222e564e5 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 17 五月 2024 14:49:12 +0800
Subject: [PATCH] 下载文件接口,bug修改
---
src/main/resources/mapper/ExamTemplatesUserCountMapper.xml | 26 ++++++++++++++++++++------
1 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/src/main/resources/mapper/ExamTemplatesUserCountMapper.xml b/src/main/resources/mapper/ExamTemplatesUserCountMapper.xml
index 15c3234..88435a4 100644
--- a/src/main/resources/mapper/ExamTemplatesUserCountMapper.xml
+++ b/src/main/resources/mapper/ExamTemplatesUserCountMapper.xml
@@ -19,15 +19,18 @@
</insert>
<select id="list" resultType="com.mindskip.xzs.domain.vo.ExamTemplatesUserCountVO" parameterType="com.mindskip.xzs.viewmodel.admin.exam.ExamPaperPageRequestVM">
- SELECT u.exam_templates_id as id, count(*) as count, u.user_id as userId FROM `t_exam_templates_user_count` u
- left join t_exam_templates e on u.exam_templates_id = e.id
+ SELECT
+ e.id as id,
+ count(u.user_id) as count,
+ u.user_id as userId
+ FROM
+ t_exam_templates e
+ left join `t_exam_templates_user_count` u on u.exam_templates_id = e.id <if test="userId != null">and u.user_id = #{userId}</if>
<where>
<if test="templatesId != null">
and u.exam_templates_id = #{templatesId}
</if>
- <if test="userId != null">
- and u.user_id = #{userId}
- </if>
+
<if test="status != null">
and e.status = 0
</if>
@@ -82,4 +85,15 @@
where c.exam_templates_id = #{id}
</select>
-</mapper>
\ No newline at end of file
+ <select id="getByExamTemplatesUser" resultType="com.mindskip.xzs.domain.vo.UserCountExcelVO" parameterType="java.lang.Integer">
+ SELECT t.`name`as name,d.`name` as departmentName,u.real_name as userName,SUBSTRING_INDEX(a.user_score/10,".",1) as userScore,SUBSTRING_INDEX(a.paper_score/10,".",1) as paperScore,a.do_time as doTime
+ from t_exam_templates_user c
+ LEFT JOIN t_exam_templates t on c.templates_id = t.id
+ left join t_exam_templates_user_count o on c.templates_id = o.exam_templates_id
+ LEFT JOIN t_exam_paper_answer a on (o.exam_paper_id = a.exam_paper_id and o.user_id = a.create_user)
+ LEFT JOIN t_user u on a.create_user = u.id
+ LEFT JOIN t_department d on d.id = u.user_level
+ where c.templates_id = #{id}
+ </select>
+
+</mapper>
--
Gitblit v1.8.0