Blame view

CourseDictMapper.xml 3.93 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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.CourseDictMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.CourseDictDO">
        <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_name" property="courseName" />
        <result column="category_id" property="categoryId" />
        <result column="course_type" property="courseType" />
        <result column="course_source" property="courseSource" />
    </resultMap>

    <!-- 通用查询结果列 -->
涂亚平 committed
18 19 20 21 22 23 24 25 26
    <select id="queryCourses" resultType="com.subsidy.vo.course.QueryCoursesVO">
        SELECT
        t.*,
        t2.name
        FROM
        course_dict t
        left join category t2 on t.category_id = t2.id
        WHERE
        t.delete_date IS NULL
涂亚平 committed
27
        and t.company_id  is null
涂亚平 committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
        <if test="categoryId != null">
            AND t.category_id = #{categoryId}
        </if>
        <if test="courseName != null and courseName !=''">
            AND t.course_name like concat('%',#{courseName} ,'%')
        </if>
        <if test="courseSource != null and courseSource != ''">
            AND t.course_source = #{courseSource}
        </if>
        <if test="courseType != null and courseType !=''">
            AND t.course_type = #{courseType}
        </if>

    </select>

涂亚平 committed
43 44 45 46 47 48 49
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, course_name, category_id, course_type, course_source
    </sql>

涂亚平 committed
50
    <select id="queryCourseMember" parameterType="com.subsidy.vo.member.StudyPageVO" resultType="com.subsidy.model.ClassMemberMappingDO">
涂亚平 committed
51
        SELECT
涂亚平 committed
52
            t3.*
涂亚平 committed
53 54
        FROM
            course_dict t
涂亚平 committed
55 56
            LEFT JOIN class_dict t2 ON t.id = t2.course_id
            LEFT JOIN class_member_mapping t3 ON t2.id = t3.member_id
涂亚平 committed
57 58
        WHERE
            t.delete_date IS NULL
涂亚平 committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
            AND t2.delete_date IS NULL
            AND t3.delete_date IS NULL
            AND t.id = {classId}
    </select>

    <select id="queryPublicCourses" resultType="com.subsidy.vo.course.QueryCoursesVO">
        SELECT
        t.*,
        t2.name
        FROM
        course_dict t
        left join category t2 on t.category_id = t2.id
        WHERE
        t.delete_date IS NULL
        <if test="categoryId != null">
涂亚平 committed
74
            AND t.category_id = #{categoryId}
涂亚平 committed
75 76
        </if>
        <if test="courseName != null and courseName !=''">
涂亚平 committed
77
            AND t.course_name like concat('%',#{courseName} ,'%')
涂亚平 committed
78 79 80 81 82
        </if>
        <if test="courseSource != null and courseSource != ''">
            AND t.course_source = #{courseSource}
        </if>
        <if test="courseType != null and courseType !=''">
涂亚平 committed
83
            AND t.course_type = #{courseType}
涂亚平 committed
84 85
        </if>
            AND t.administer_id is null
涂亚平 committed
86 87
    </select>

涂亚平 committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    <select id="queryCompanyCourse" resultType="com.subsidy.vo.course.QueryCoursesVO">
        SELECT
        t.*,
        t2.name
        FROM
        course_dict t
        left join category t2 on t.category_id = t2.id
        WHERE
        t.delete_date IS NULL
        <if test="categoryId != null">
            AND t.category_id = #{categoryId}
        </if>
        <if test="courseName != null and courseName !=''">
            AND t.course_name like concat('%',#{courseName} ,'%')
        </if>
        <if test="courseSource != null and courseSource != ''">
            AND t.course_source = #{courseSource}
        </if>
        <if test="courseType != null and courseType !=''">
            AND t.course_type = #{courseType}
        </if>
        <if test="companyId !=null and companyId !='' ">
            AND t.company_id = #{companyId}
        </if>
    </select>
涂亚平 committed
113
</mapper>