Blame view

ExerciseDoneResultMapper.xml 3.03 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.subsidy.mapper.ExerciseDoneResultMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.ExerciseDoneResultDO">
        <id column="id" property="id" />
        <result column="create_date" property="createDate" />
        <result column="update_date" property="updateDate" />
        <result column="delete_date" property="deleteDate" />
        <result column="member_id" property="memberId" />
        <result column="course_id" property="courseId" />
        <result column="right_counts" property="rightCounts" />
        <result column="total_counts" property="totalCounts" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, member_id, course_id, right_counts, total_counts
    </sql>

涂亚平 committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
    <select id="queryExerciseDoneResult" resultType="com.subsidy.vo.administer.GetMemberPapersVO">
        SELECT
            t.id,
            t.paper_id,
            right_counts,
            total_counts,
            score,
            result,
            create_date
        FROM
            exercise_done_result t
        WHERE
            t.delete_date is null
            and t.member_id = #{memberId}
            <if test="classId != null and classId !=''">
                AND t.class_id = #{classId}
            </if>
            <if test="paperId != null and paperId !=''">
                AND t.paper_id = #{paperId}
            </if>
涂亚平 committed
45
            order by t.score desc
涂亚平 committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
    </select>

    <select id="getPaperDetail" resultType="com.subsidy.vo.administer.GetPaperDetailVO">
        SELECT
            t2.title,
            t.result,
            t.answer,
            t2.right_answer,
            t2.items,
            t2.detail
        FROM
            exercise_done_history t
            LEFT JOIN exercise_dict t2 ON t.exercise_id = t2.id
        WHERE
            t.delete_date is null
            and t2.delete_date is null
            and t.done_id = #{doneId}
            AND t.member_id = #{memberId}
    </select>

    <select id="getDoneDetail" parameterType="long" resultType="com.subsidy.vo.exercise.GetDoneDetailVO">
        SELECT
            right_counts,
            total_counts,
            result,
            create_date
        FROM
            exercise_done_result t
            where t.delete_date is null
            and t.id = #{id}
    </select>

    <select id="getMaxScore" resultType="com.subsidy.vo.done.GetMaxScoreVO">
        SELECT
            t.paper_id,
            t2.paper_name,
            max( t.score ) AS score
        FROM
            exercise_done_result t
            left join paper_dict t2 on t.paper_id = t2.id
        WHERE
            t.member_id = #{memberId}
            AND t.class_id = #{classId}
        GROUP BY
            t.class_id,
            t.paper_id,
            t.member_id
    </select>

涂亚平 committed
95
</mapper>