Blame view

CourseDictMapper.xml 5.62 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?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="course_type" property="courseType" />
    </resultMap>

    <!-- 通用查询结果列 -->
涂亚平 committed
16 17
    <select id="queryCourses" resultType="com.subsidy.vo.course.QueryCoursesVO">
        SELECT
涂亚平 committed
18
        distinct
涂亚平 committed
19 20 21
            t.id,
            t.course_name,
            t.course_type,
涂亚平 committed
22
            t.open_status,
涂亚平 committed
23 24
            t.cover_page,
            t.remark
涂亚平 committed
25
        FROM
涂亚平 committed
26 27 28 29 30
            course_dict t
        LEFT JOIN course_field_mapping t2 ON t.id = t2.course_id
        LEFT JOIN course_category_mapping t3 ON t.id = t3.course_id
        LEFT JOIN course_job_mapping t4 ON t.id = t4.course_id
        left join course_rank_mapping t5 on t.id = t5.course_id
涂亚平 committed
31
        left join course_business_mapping t6 on t.id = t6.course_id
涂亚平 committed
32
        WHERE
涂亚平 committed
33 34 35 36 37
            t.delete_date IS NULL
        AND t2.delete_date IS NULL
        AND t3.delete_date IS NULL
        AND t4.delete_date IS NULL
        and t5.delete_date is null
涂亚平 committed
38
        and t6.delete_date is null
涂亚平 committed
39 40
        <if test="companyId != null and companyId != ''">
            and t.company_id = #{companyId}
涂亚平 committed
41
        </if>
涂亚平 committed
42
        <if test="companyId == null">
涂亚平 committed
43 44
            and t.company_id is null
        </if>
涂亚平 committed
45 46 47 48 49 50
        <if test="courseName != null and courseName !=''">
            AND t.course_name like concat('%',#{courseName} ,'%')
        </if>
        <if test="courseType != null and courseType !=''">
            AND t.course_type = #{courseType}
        </if>
涂亚平 committed
51 52 53 54 55 56 57
        <if test="jobId != null and jobId != ''">
            and t4.job_id = #{jobId}
        </if>
        <if test="categoryId != null and categoryId != ''">
            and t3.category_id = #{categoryId}
        </if>
        <if test="fieldId != null and fieldId != ''">
涂亚平 committed
58
            and t2.field_id = #{fieldId}
涂亚平 committed
59 60 61 62
        </if>
        <if test="rankId != null and rankId != ''">
            and t5.rank_id = #{rankId}
        </if>
涂亚平 committed
63 64 65
        <if test="openStatus != null and openStatus != ''">
            and t.open_status = #{openStatus}
        </if>
涂亚平 committed
66 67 68
        <if test="businessId != null and businessId != ''">
            and t6.business_id = #{businessId}
        </if>
涂亚平 committed
69 70
    </select>

涂亚平 committed
71 72 73 74 75 76 77
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, course_name, category_id, course_type, course_source
    </sql>

涂亚平 committed
78
    <select id="queryCourseMember" parameterType="com.subsidy.vo.member.StudyPageVO" resultType="com.subsidy.model.ClassMemberMappingDO">
涂亚平 committed
79
        SELECT
涂亚平 committed
80
            t3.*
涂亚平 committed
81 82
        FROM
            course_dict t
涂亚平 committed
83 84
            LEFT JOIN class_dict t2 ON t.id = t2.course_id
            LEFT JOIN class_member_mapping t3 ON t2.id = t3.member_id
涂亚平 committed
85 86
        WHERE
            t.delete_date IS NULL
涂亚平 committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
            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
102
            AND t.category_id = #{categoryId}
涂亚平 committed
103 104
        </if>
        <if test="courseName != null and courseName !=''">
涂亚平 committed
105
            AND t.course_name like concat('%',#{courseName} ,'%')
涂亚平 committed
106 107 108 109 110
        </if>
        <if test="courseSource != null and courseSource != ''">
            AND t.course_source = #{courseSource}
        </if>
        <if test="courseType != null and courseType !=''">
涂亚平 committed
111
            AND t.course_type = #{courseType}
涂亚平 committed
112 113
        </if>
            AND t.administer_id is null
涂亚平 committed
114 115
    </select>

涂亚平 committed
116
    <select id="queryCourseCnt" parameterType="long" resultType="integer">
涂亚平 committed
117
        SELECT
涂亚平 committed
118
            count( t2.id )
涂亚平 committed
119
        FROM
涂亚平 committed
120
            course_content t1
邓敏 committed
121 122
            LEFT JOIN content_vod_mapping t3 ON t3.content_id = t1.id
            LEFT JOIN vod_dict t2 ON t2.id = t3.vod_id
涂亚平 committed
123
        WHERE
涂亚平 committed
124 125
            t1.delete_date IS NULL
            AND t2.delete_date IS NULL
邓敏 committed
126
            AND t3.delete_date IS NULL
涂亚平 committed
127
            AND t1.course_id = #{courseId}
涂亚平 committed
128
    </select>
129

涂亚平 committed
130 131 132 133 134
    <select id="queryCoursePlayLength" parameterType="long" resultType="integer">
        SELECT
            sum( t2.vod_length )
        FROM
            course_content t1
邓敏 committed
135
            LEFT JOIN content_vod_mapping t3 ON t3.content_id = t1.id
涂亚平 committed
136
            LEFT JOIN vod_dict t2 ON t2.id = t3.vod_id
涂亚平 committed
137 138 139
        WHERE
            t1.delete_date IS NULL
            AND t2.delete_date IS NULL
邓敏 committed
140
            AND t3.delete_date IS NULL
涂亚平 committed
141 142
            AND t1.course_id = #{courseId}
    </select>
143

邓敏 committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157
    <select id="getListByVodId" resultType="com.subsidy.model.CourseDictDO">
        SELECT
            t1.*
        FROM
            course_dict t1
            LEFT JOIN course_content t2 ON t2.course_id = t1.id
            LEFT JOIN content_vod_mapping t3 ON t3.content_id = t2.id
        WHERE
            t3.vod_id = #{vodId}
          AND t1.delete_date IS NULL
          AND t2.delete_date IS NULL
          AND t3.delete_date IS NULL
    </select>

涂亚平 committed
158 159 160
    <update id="updateOpenStatus">
        update course_dict set open_status = #{openStatus} where id = #{id}
    </update>
161

涂亚平 committed
162
</mapper>