Blame view

ClassDictMapper.xml 9.09 KB
涂亚平 committed
1 2 3 4 5 6
<?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.ClassDictMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.ClassDictDO">
涂亚平 committed
7 8 9 10 11 12 13 14
        <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="class_name" property="className"/>
        <result column="course_id" property="courseId"/>
        <result column="start_date" property="startDate"/>
        <result column="end_date" property="endDate"/>
涂亚平 committed
15 16 17 18 19 20 21 22 23 24 25 26
    </resultMap>

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

    <select id="getAllClasses" resultType="com.subsidy.vo.classdict.GetAllClassesVO">
        SELECT
涂亚平 committed
27 28 29 30 31 32
        t.id,
        t2.id as courseId,
        t.class_name,
        t2.course_name,
        t.start_date,
        t.end_date,
33
        t4.cnt,
涂亚平 committed
34
        t5.class_type,
涂亚平 committed
35 36
        t5.id as class_type_id,
        t.class_code
涂亚平 committed
37 38
        FROM
        class_dict t
涂亚平 committed
39
        left join class_type_dict t5 on t.class_type_id = t5.id
涂亚平 committed
40 41 42 43 44 45
        LEFT JOIN course_dict t2 ON t.course_id = t2.id
        LEFT JOIN ( SELECT t3.class_id, sum( 1 ) AS cnt FROM class_member_mapping t3 WHERE t3.delete_date IS NULL GROUP
        BY t3.class_id ) t4 ON t.id = t4.class_id
        WHERE
        t.delete_date IS NULL
        AND t2.delete_date IS NULL
涂亚平 committed
46
        and t5.delete_date is null
涂亚平 committed
47 48 49 50
        and t.company_id = #{companyId}
        <if test="className != null and className !=''">
            and t.class_name like concat('%',#{className} ,'%')
        </if>
涂亚平 committed
51
        <if test="startDate != null and endDate != null and startDate != '' and endDate != ''">
涂亚平 committed
52
            and t.end_date >= DATE_FORMAT( #{startDate}, '%Y-%m-%d' )
涂亚平 committed
53
            and t.start_date  &lt; DATE_FORMAT( #{endDate}, '%Y-%m-%d' )
涂亚平 committed
54
        </if>
涂亚平 committed
55
        order by t.create_date desc
涂亚平 committed
56 57 58 59 60
    </select>

    <select id="getClassVods" parameterType="long" resultType="com.subsidy.model.VodDictDO">
        SELECT
            t3.*
涂亚平 committed
61 62
        FROM
            class_dict t
涂亚平 committed
63
            LEFT JOIN course_content t2 ON t.course_id = t2.course_id
邓敏 committed
64 65
            LEFT JOIN content_vod_mapping t4 ON t4.content_id = t2.id
            LEFT JOIN vod_dict t3 ON t3.id = t4.vod_id
涂亚平 committed
66 67 68
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
涂亚平 committed
69
            AND t3.delete_date IS NULL
邓敏 committed
70 71 72
            AND t4.delete_date IS NULL
            AND t3.id IS NOT NULL
            AND t.id = #{classId}
涂亚平 committed
73 74 75 76 77
    </select>

    <select id="getSpareMembers" parameterType="com.subsidy.dto.classDict.GetSpareMembersDTO"
            resultType="com.subsidy.model.MemberDO">
       SELECT
78 79 80 81 82 83 84 85 86 87 88
           distinct 	t2.id,
                        t2.company_id,
                        t2.user_name,
                        t2.account_name,
                        t2.telephone,
                        t2.PASSWORD,
                        t2.gender,
                        t2.image,
                        t2.id_card,
                        t2.STATUS,
                        t2.first_login
涂亚平 committed
89 90
        FROM
            member t2
涂亚平 committed
91 92 93
	    LEFT JOIN member_department_mapping t ON t.member_id = t2.id
	    left join department_dict t3 on t.department_id = t3.id
	    left join company_dict t4 on t3.company_id = t4.id
涂亚平 committed
94 95 96
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
涂亚平 committed
97
            AND t3.company_id = #{companyId}
涂亚平 committed
98 99
            AND t2.id NOT IN (
            SELECT
100
                t3.member_id
涂亚平 committed
101 102 103 104 105
            FROM
                class_member_mapping t3
            WHERE
            t3.delete_date IS NULL
            AND t3.class_id = #{classId})
涂亚平 committed
106 107 108
             <if test="userName != null and userName !=''">
                and t2.user_name like concat('%',#{userName} ,'%')
            </if>
涂亚平 committed
109 110
    </select>

111 112
    <select id="classMembers" parameterType="long" resultType="com.subsidy.model.MemberDO">
        SELECT
113 114 115 116 117 118 119 120 121 122 123
            	t2.id,
                t2.company_id,
                t2.user_name,
                t2.account_name,
                t2.telephone,
                t2.PASSWORD,
                t2.gender,
                t2.image,
                t2.id_card,
                t2.STATUS,
                t2.first_login
124 125 126 127 128 129 130 131 132
        FROM
            class_member_mapping t
            LEFT JOIN member t2 ON t.member_id = t2.id
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            AND t.class_id = #{classId}
    </select>

涂亚平 committed
133 134 135
    <select id="getClassBaseInfo" parameterType="long" resultType="com.subsidy.vo.classdict.GetClassBaseInfoVO">
        SELECT
            t3.class_type,
涂亚平 committed
136
            t.class_name,
涂亚平 committed
137 138 139
            t2.course_name,
            t.start_date,
            t.end_date,
涂亚平 committed
140 141
            ifnull( t4.cnt, 0 ) AS count,
            t2.id as courseId,
涂亚平 committed
142 143 144
            t3.id as classTypeId,
            t.is_order,
            t.is_fast_play,
涂亚平 committed
145
            t.test_rule,
涂亚平 committed
146 147
            t2.cover_page,
            t.class_code
涂亚平 committed
148 149 150 151 152 153 154 155 156 157 158
        FROM
            class_dict t
            LEFT JOIN course_dict t2 ON t.course_id = t2.id
            LEFT JOIN class_type_dict t3 ON t.class_type_id = t3.id
            LEFT JOIN ( SELECT t.class_id, count( 1 ) AS cnt FROM class_member_mapping t WHERE t.delete_date IS NULL AND t.class_id = #{classId} ) t4 ON t.id = t4.class_id
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            AND t3.delete_date IS NULL
            AND t.id = #{classId}
    </select>
涂亚平 committed
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

    <select id="getClassAndCompanyInfoVO" resultType="com.subsidy.vo.classdict.ClassAndCompanyInfoVO">
        SELECT
            cd.company_name AS company,
            cd.short_name AS NAME,
            d.course_name,
            c.start_date,
            c.end_date
        FROM
            class_dict c
            LEFT JOIN company_dict cd ON cd.id = c.company_id
            LEFT JOIN course_dict d ON d.id = c.course_id
        WHERE
            c.id = #{classId}
            AND c.delete_date IS NULL
            AND cd.delete_date IS NULL
            AND d.delete_date IS NULL
    </select>
邓敏 committed
177 178 179 180 181 182 183 184 185 186 187 188

    <select id="getClassCount" resultType="java.lang.Integer">
        SELECT
            count(t1.id)
        FROM
            class_dict t1
            LEFT JOIN course_dict t2 ON t2.id = t1.course_id
        WHERE
            t2.course_type = "补贴培训"
          AND t1.delete_date IS NULL
          AND t2.delete_date IS NULL
    </select>
邓敏 committed
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

    <select id="getClassSettings" resultType="com.subsidy.vo.classdict.ClassSettingsVO">
        SELECT
            t1.*,
            t3.ip_address_record,
            t3.device_no_record
        FROM
            class_dict t1
            LEFT JOIN class_member_mapping t2 ON t2.class_id = t1.id
            LEFT JOIN company_dict t3 ON t3.id = t1.company_id
        WHERE
            t2.member_id = #{userId}
          AND t1.delete_date IS NULL
          AND t2.delete_date IS NULL
          AND t3.delete_date IS NULL
    </select>
涂亚平 committed
205 206 207

    <select id="getCompanySettings" parameterType="long" resultType="com.subsidy.vo.classdict.SystemSettings">
        SELECT
涂亚平 committed
208
            t2.id,
涂亚平 committed
209 210 211 212 213 214 215 216 217 218 219 220
            t2.time_limit,
            t2.ip_address_record,
            t2.device_no_record
        FROM
            class_dict t
            LEFT JOIN company_dict t2 ON t.company_id = t2.id
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            AND t.id = #{classId}
    </select>

涂亚平 committed
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
    <select id="getAllCertClasses" resultType="com.subsidy.vo.classdict.GetAllClassesVO">
        SELECT
        t.id,
        t2.id as courseId,
        t.class_name,
        t2.course_name,
        t.start_date,
        t.end_date,
        t4.cnt,
        t5.class_type,
        t5.id as class_type_id
        FROM
        class_dict t
        left join class_type_dict t5 on t.class_type_id = t5.id
        LEFT JOIN course_dict t2 ON t.course_id = t2.id
        LEFT JOIN ( SELECT t3.class_id, sum( 1 ) AS cnt FROM class_member_mapping t3 WHERE t3.delete_date IS NULL GROUP
        BY t3.class_id ) t4 ON t.id = t4.class_id
        WHERE
        t.delete_date IS NULL
        AND t2.delete_date IS NULL
        and t5.delete_date is null
        and t5.id = 0
        <if test="className != null and className !=''">
            and t.class_name like concat('%',#{className} ,'%')
        </if>
        <if test="startDate != null and endDate != null and startDate != '' and endDate != ''">
            and t.end_date >= DATE_FORMAT( #{startDate}, '%Y-%m-%d' )
            and t.start_date  &lt; DATE_FORMAT( #{endDate}, '%Y-%m-%d' )
        </if>
        order by t.create_date desc
    </select>

涂亚平 committed
253 254 255 256 257 258
    <select id="dailyClassInfo" resultType="long">
        SELECT DISTINCT
            t1.class_id
        FROM
            vod_play_history t1
        WHERE
涂亚平 committed
259
            DATE_FORMAT( DATE_ADD( t1.create_date, INTERVAL 2 DAY ), '%Y-%m-%d' ) = DATE_FORMAT( NOW(), '%Y-%m-%d' )
涂亚平 committed
260 261 262
            AND t1.delete_date IS NULL
    </select>

涂亚平 committed
263
</mapper>