xiangpei
2024-05-14 d3d1235bab219b382a5bebfe34edabbba52d151c
src/main/resources/mapper/ExamPaperAnswerMapper.xml
@@ -38,6 +38,11 @@
    paper_score, question_correct, question_count, do_time, status, create_user, create_time,
    task_exam_id,DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%s') AS formattedTime
  </sql>
  <sql id="Base_Column_List4">
    id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score,
    TRUNCATE(paper_score/10,0) as paper_score, question_correct, question_count, do_time, status, create_user, create_time,
    task_exam_id,DATE_FORMAT(create_time, '%Y-%m-%d %H:%i:%s') AS formattedTime
  </sql>
  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
@@ -226,11 +231,19 @@
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="setMissExam">
    update t_exam_paper_answer
    set invalid = 1
    where exam_paper_id = #{examPaperId}
    and create_user in (
    <foreach collection="userIds" item="item" index="index" separator=",">
      #{item}
    </foreach>
    )
  </update>
  <select id="studentPage" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.viewmodel.student.exampaper.ExamPaperAnswerPageVM">
    <select id="studentPage" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.viewmodel.student.exampaper.ExamPaperAnswerPageVM">
    SELECT
    <include refid="Base_Column_List"/>
    FROM t_exam_paper_answer
@@ -269,24 +282,32 @@
  <select id="adminPage" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.viewmodel.admin.paper.ExamPaperAnswerPageRequestVM">
    SELECT
    <include refid="Base_Column_List"/>
    FROM t_exam_paper_answer
    a.id, a.exam_paper_id, a.paper_name, a.paper_type, a.subject_id, a.system_score, a.user_score,
    a.paper_score, a.question_correct, a.question_count, a.do_time, a.status, a.create_user, a.create_time,
    a.task_exam_id, u.real_name as userName
    FROM t_exam_paper_answer a
    left join t_user u on a.create_user = u.id
    <where>
      <if test="subjectId != null">
        and subject_id = #{subjectId}
        and a.subject_id = #{subjectId}
      </if>
      <if test="paperName != null and paperName != ''">
        and paper_name like concat('%',#{paperName},'%')
        and a.paper_name like concat('%',#{paperName},'%')
      </if>
      <if test="userName != null and userName != ''">
        and u.real_name like concat('%',#{userName},'%')
      </if>
    </where>
  </select>
  <select id="getById" resultMap="BaseResultMap">
    SELECT
    <include refid="Base_Column_List"/>
    FROM t_exam_paper_answer
    where id = #{id}
  </select>
  <select id="selectByPaperName" resultMap="BaseResultMap" parameterType="java.lang.String">
    SELECT
    <include refid="Base_Column_List"/>
@@ -308,6 +329,7 @@
                  (#{item.examPaperId},#{item.userId})
        </foreach>
      </if>
    and (invalid = 0 or invalid is null)
  </select>
  <select id="adminPageByGrade" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.viewmodel.admin.paper.ExamPaperGradePageRequestVM">
    select
@@ -333,11 +355,60 @@
        </foreach>
      </if>
    </select>
    <select id="getByCreatUser" resultMap="BaseResultMap" parameterType="com.mindskip.xzs.domain.vo.ScoreTemplatesCountVO">
      select
      <include refid="Base_Column_List3"/>
      from t_exam_paper_answer where create_user = #{createUser} and create_time between '2023-01-01'and '2023-12-31'
        <include refid="Base_Column_List4"/>
      from
           t_exam_paper_answer
      <where>
        AND create_user = #{query.createUser}
        <if test="query.start != null and query.end != null">
          AND create_time between #{query.start} and #{query.end}
        </if>
      </where>
    </select>
  <select id="getByExamPaperIds" resultMap="BaseResultMap" parameterType="list">
    select
    <include refid="Base_Column_List1" />
    from t_exam_paper_answer
    where exam_paper_id in
    <if test="ids !=null and ids.size() > 0">
      <foreach collection="examTemplatesUserCount" item="item" index="item" open="(" separator="," close=")">
        #{item}
      </foreach>
    </if>
  </select>
  <select id="getResult" resultMap="BaseResultMap" parameterType="list">
    select * from t_exam_paper_answer  where (exam_paper_id) in
    <foreach collection="list" item="item" open="(" close=")" separator=",">
      (#{item})
    </foreach>
  </select>
  <select id="getByTimeOne" resultType="com.mindskip.xzs.domain.vo.TeamplatesUserExcelVO">
    select a.paper_name as name, 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_paper_answer a
    left join t_user u on a.create_user = u.id
    where a.create_time
  </select>
  <insert id="insertDefault">
    INSERT INTO t_exam_paper_answer(exam_paper_id, paper_name, paper_type, system_score, user_score, paper_score, question_correct, question_count, do_time, status,
    create_user, create_time, invalid)
    SELECT
    a.id, a.name, a.paper_type, 0, 0, a.score, 0,  a.question_count, 0, 2, b.user_id, NOW(), 0
    FROM t_exam_paper a
    left join t_exam_paper_user b on a.id = b.exam_paper_id and b.deleted = 0
    left join t_exam_paper_answer c on a.id = c.exam_paper_id and c.create_user = b.user_id
    WHERE a.id = #{examPaperId}
    and c.id is null
    and b.user_id not in
    <foreach collection="userIds" item="item" open="(" close=")" separator=",">
      #{item}
    </foreach>
  </insert>
</mapper>