Blame view

PaperDictMapper.xml 2.07 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 25 26 27 28 29 30 31 32 33 34 35 36
<?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.PaperDictMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.PaperDictDO">
        <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="course_id" property="courseId" />
        <result column="paper_name" property="paperName" />
        <result column="paper_status" property="paperStatus" />
    </resultMap>

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

    <select id="queryPapers" parameterType="com.subsidy.model.PaperDictDO" resultType="com.subsidy.vo.paper.QueryPapersVO">
        SELECT
            id,
            paper_name,
            paper_status
        FROM
            paper_dict t
        WHERE
            t.delete_date is null
            and t.course_id = #{courseId}
        <if  test="paperName != null and paperName !=''">
            AND t.paper_name LIKE concat('%',#{paperName} ,'%')
        </if>
涂亚平 committed
37 38 39
        <if test="paperStatus != null and paperStatus !=''">
            AND t.paper_status = #{paperStatus}
        </if>
涂亚平 committed
40 41
    </select>

涂亚平 committed
42
    <select id="completeCount"  resultType="integer">
涂亚平 committed
43 44 45 46 47 48 49
        SELECT
            count( DISTINCT t.member_id ) AS cnt
        FROM
            exercise_done_result t
        WHERE
            t.delete_date IS NULL
            AND t.paper_id = #{paperId}
涂亚平 committed
50
            and t.class_id = #{classId}
涂亚平 committed
51
    </select>
涂亚平 committed
52

涂亚平 committed
53 54 55 56 57 58 59 60 61 62
    <select id="queryCoursePapersCnt" parameterType="long" resultType="integer">
        SELECT
            count( 1 )
        FROM
            paper_dict t
        WHERE
            t.delete_date IS NULL
            AND t.course_id = #{courseId}
    </select>

涂亚平 committed
63
</mapper>