From b9456d139422ea00fa736c1313aad597be36bdf0 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期二, 16 七月 2024 13:58:56 +0800 Subject: [PATCH] 导出bug修改完善 --- src/main/resources/mapper/QuestionSubjectMapper.xml | 49 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 46 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mapper/QuestionSubjectMapper.xml b/src/main/resources/mapper/QuestionSubjectMapper.xml index 69f5979..e9912cf 100644 --- a/src/main/resources/mapper/QuestionSubjectMapper.xml +++ b/src/main/resources/mapper/QuestionSubjectMapper.xml @@ -98,24 +98,67 @@ id DESC </select> - <select id="questionsBySubjectId" resultType="integer"> + <select id="questionsBySubjectId" resultType="integer"> SELECT - tqs.question_id + tqs.question_id, ttc.content FROM t_question_subject tqs INNER JOIN t_question tq ON tqs.question_id = tq.id AND tqs.subject_id = #{subjectId} + INNER JOIN t_text_content ttc ON ttc.id = tq.info_text_content_id ORDER BY tqs.id DESC </select> <select id="questionsBySubjectIdAndQuestionType" resultType="integer"> SELECT - tqs.question_id + tqs.question_id, ttc.content FROM t_question_subject tqs INNER JOIN t_question tq ON tqs.question_id = tq.id AND tqs.subject_id = #{subjectId} AND tq.question_type = #{questionType} + INNER JOIN t_text_content ttc ON ttc.id = tq.info_text_content_id ORDER BY tqs.id DESC </select> + <select id="bySubjectId" resultType="com.mindskip.xzs.domain.vo.QuestionVO"> + SELECT + tq.id, + tq.question_type, + tq.correct, + ttc.content as contentJson + FROM + t_question_subject tqs + INNER JOIN t_question tq ON tqs.question_id = tq.id AND tqs.subject_id = #{subjectId} + INNER JOIN t_text_content ttc ON ttc.id = tq.info_text_content_id + ORDER BY + tq.id DESC + </select> + + <select id="bySubjectIdAndQuestionType" resultType="com.mindskip.xzs.domain.vo.QuestionVO"> + SELECT + tq.id, + tq.question_type, + tq.correct, + ttc.content as contentJson + FROM + t_question_subject tqs + INNER JOIN t_question tq ON tqs.question_id = tq.id AND tqs.subject_id = #{subjectId} AND tq.question_type = #{questionType} + INNER JOIN t_text_content ttc ON ttc.id = tq.info_text_content_id + ORDER BY + tq.id DESC + </select> + + <select id="getSubjectBySubjectIds" resultType="com.mindskip.xzs.domain.QuestionSubject"> + select qs.*,s.name as subName + from t_question_subject qs + left join t_subject s on qs.subject_id = s.id + where qs.deleted = 0 and s.deleted = 0 + <if test="subjectIds != null and subjectIds.length > 0"> + and qs.subject_id in + <foreach collection="subjectIds" item="subjectId" open="(" separator="," close=")"> + #{subjectId} + </foreach> + </if> + </select> + </mapper> -- Gitblit v1.8.0