Blame view

ExerciseDoneResultMapper.xml 4.96 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
    </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
涂亚平 committed
87 88
            t.delete_date is null
            and t.member_id = #{memberId}
涂亚平 committed
89 90 91 92 93 94 95
            AND t.class_id = #{classId}
        GROUP BY
            t.class_id,
            t.paper_id,
            t.member_id
    </select>

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
    <select id="getMaxScorePaper" resultType="com.subsidy.model.ExerciseDoneResultDO">
        SELECT
            max( t.score ),
            t.right_counts,
            t.total_counts,
            t.result
        FROM
            exercise_done_result t
        WHERE
            t.delete_date IS NULL
            AND t.paper_id = #{paperId}
            AND t.member_id = #{memberId}
    </select>

    <select id="testScoreInfo" resultType="com.subsidy.vo.done.TestScoreInfoVO">
        SELECT
            t.paper_id,
            max( t.score ) AS score,
            count( 1 ) AS cnt,
        IF
            ( max( t.score )>= 60, '合格', '不合格' ) AS result
        FROM
            exercise_done_result t
            LEFT JOIN paper_dict t2 ON t.paper_id = t2.id
        WHERE
            t.delete_date IS NULL
            AND t.member_id = #{memberId}
            AND t.paper_id = #{paperId}
        GROUP BY
            t.class_id,
            t.paper_id,
            t.member_id
    </select>

    <select id="getClassTestPassRate" parameterType="long" resultType="integer">
        SELECT
            sum( t11.result )
        FROM
            (
            SELECT
            IF
                ( sum( cnt )= sum( result ), 1, 0 ) AS result
            FROM
                (
                SELECT
                    t.paper_id,
                    t.member_id,
                    max( t.score ) AS score,
                    1 AS cnt,
                IF
                    ( max( t.score )>= 60, '1', '0' ) AS result
                FROM
                    exercise_done_result t
                    LEFT JOIN paper_dict t2 ON t.paper_id = t2.id
                WHERE
                    t.delete_date IS NULL
                    AND t.class_id = 2
                GROUP BY
                    t.class_id,
                    t.paper_id,
                    t.member_id
                ) t10
            ) t11
    </select>
涂亚平 committed
160
</mapper>