Blame view

VodPlayHistoryMapper.xml 10.9 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.VodPlayHistoryMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.VodPlayHistoryDO">
涂亚平 committed
7 8 9 10 11 12 13 14 15
        <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_id" property="classId"/>
        <result column="vod_id" property="vodId"/>
        <result column="member_id" property="memberId"/>
        <result column="play_length" property="playLength"/>
        <result column="play_record" property="playRecord"/>
涂亚平 committed
16 17 18 19 20 21 22 23 24
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, class_id, vod_id, member_id, play_length, play_record
    </sql>
邓敏 committed
25 26 27
    <delete id="deleteById">
        delete from vod_play_history
    </delete>
涂亚平 committed
28

涂亚平 committed
29
    <select id="studyHistory" parameterType="long" resultType="com.subsidy.vo.vod.StudyHistoryVO">
涂亚平 committed
30 31 32 33 34 35
        SELECT
            t2.id,
            t2.vod_length,
            t2.teacher_name,
            t2.vod_url,
            t2.vod_name,
涂亚平 committed
36
            t3.play_record,
37
            if(round( t3.play_record * 100 / t2.vod_length, 0 )>=80,'true','false') as status,
38
            t.playDate
涂亚平 committed
39 40 41 42
        FROM
            (
            SELECT
                t.vod_id,
涂亚平 committed
43 44
                t.member_id,
                max( t.create_date ) AS playDate
涂亚平 committed
45 46 47 48 49 50
            FROM
                vod_play_history t
            WHERE
                t.delete_date IS NULL
                AND t.member_id = #{memberId}
            GROUP BY
涂亚平 committed
51 52
                t.vod_id,
                t.member_id
涂亚平 committed
53
            ) t
涂亚平 committed
54 55 56
            LEFT JOIN vod_play_history t3 ON t.playDate = t3.create_date
            AND t.vod_id = t3.vod_id
            AND t.member_id = t3.member_id
涂亚平 committed
57 58 59
            LEFT JOIN vod_dict t2 ON t.vod_id = t2.id
        WHERE
            t2.delete_date IS NULL
60
        order by t.playDate desc
涂亚平 committed
61 62
    </select>

涂亚平 committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
    <select id="getMemberStudyInfo" resultType="com.subsidy.vo.vod.GetMemberStudyInfoVO">
        SELECT
            t.member_id,
            DATE_FORMAT( t.create_date, '%Y-%m-%d' ) as studyDate,
            sum( t.play_length ) as playLength,
            sum(
            IF
                ( t.play_length > t2.vod_length, t2.vod_length, t.play_length )) AS distinctLength
        FROM
            vod_play_history t
        LEFT JOIN vod_dict t2 ON t.vod_id = t2.id
        WHERE
            t.delete_date IS NULL
        AND t2.delete_date IS NULL
        AND t.class_id = #{classId}
        AND t.member_id IN
        <foreach collection="memberIds" item="id" index="index" open="(" close=")" separator=",">
            #{id}
        </foreach>
            AND DATE_FORMAT( t.create_date, '%Y-%m-%d' ) BETWEEN DATE_FORMAT( #{startDate}, '%Y-%m-%d' )
            AND DATE_FORMAT( #{endDate}, '%Y-%m-%d' )
            GROUP BY
            t.member_id,
            DATE_FORMAT( t.create_date, '%Y-%m-%d' )
    </select>

邓敏 committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    <select id="getVodPlayHistory" resultType="com.subsidy.model.VodPlayHistoryDO">
        SELECT
            a.member_id,
            a.class_id,
            a.vod_id,
            a.play_length,
            a.play_count,
            b.play_record
        FROM
            ( SELECT sum( play_length ) as play_length, sum( play_count ) as play_count, member_id, class_id, vod_id FROM vod_play_history GROUP BY member_id, class_id, vod_id ) a
                LEFT JOIN ( SELECT max( create_date ), play_record, member_id, class_id, vod_id FROM vod_play_history GROUP BY member_id, class_id, vod_id ) b ON a.member_id = b.member_id
                AND a.class_id = b.class_id
                AND a.vod_id = b.vod_id
    </select>

涂亚平 committed
104 105
    <select id="memberDailyStudyLength" parameterType="long" resultType="integer">
        SELECT
涂亚平 committed
106
            ifnull( sum( t.play_length ), 0 )
涂亚平 committed
107 108 109 110 111 112 113 114
        FROM
            vod_play_history t
        WHERE
            t.delete_date IS NULL
            AND DATE_FORMAT( t.create_date, '%Y-%m-%d' ) = DATE_FORMAT( now(), '%Y-%m-%d' )
            AND t.member_id = #{memberId}
    </select>

115 116 117
    <select id="completeVodOrNot" resultType="integer">
        SELECT
            IF
涂亚平 committed
118
                ( max( t.play_record ) >= t2.vod_length*0.8, 1, 0 ) AS count
119 120 121 122 123 124 125 126 127
            FROM
                vod_play_history t
                LEFT JOIN vod_dict t2 ON t.vod_id = t2.id
            WHERE
                t.delete_date  is null
                and t2.delete_date is null
                t.member_id = #{memberId}
                AND t.vod_id = #{vodId}
    </select>
涂亚平 committed
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230

    <select id="classStudyHistory" parameterType="long" resultType="com.subsidy.vo.sign.ClassSignInfoVO">
            SELECT
                mem_cnt AS memberCount,
                floor( t2.ttl / mem_cnt ) AS studyVodCounts,
                t3.total_vods AS totalVodCounts,
                avg_playlength AS avgVodPlayLength,
                floor( t4.pass_cnt * 100 / mem_cnt ) AS passRate,
                t5.ask_cnt AS answerCount
            FROM
                (
                SELECT
                    t.class_id,
                    count(
                    DISTINCT ( t.member_id )) AS mem_cnt,
                    round( sum( t.play_length )/ count( DISTINCT ( t.member_id )), 0 ) AS avg_playlength
                FROM
                    vod_play_history t
                WHERE
                    t.delete_date IS NULL
                    AND t.class_id = 17
                ) t
                LEFT JOIN (
                SELECT
                    t3.class_id,
                    sum( t3.cnt ) AS ttl
                FROM
                    (
                    SELECT
                        t.class_id,
                        t.member_id,
                        t.vod_id,
                    IF
                        ( max( t.play_length )>= t2.vod_length * 0.8, 1, 0 ) AS cnt
                    FROM
                        vod_play_history t
                        LEFT JOIN vod_dict t2 ON t.vod_id = t2.id
                    WHERE
                        t.class_id = #{classId}
                        AND t.delete_date IS NULL
                    GROUP BY
                        t.class_id,
                        t.member_id,
                        t.vod_id
                    ) t3
                ) t2 ON t.class_id = t2.class_id
                LEFT JOIN (
                SELECT
                    t.id,
                    count( 1 ) AS total_vods
                FROM
                    class_dict t
                    LEFT JOIN course_content t2 ON t.course_id = t2.course_id
                    LEFT JOIN vod_dict t3 ON t2.id = t3.content_id
                WHERE
                    t.delete_date IS NULL
                    AND t2.delete_date IS NULL
                    AND t3.delete_date IS NULL
                    AND t.id = #{classId}
                ) t3 ON t.class_id = t3.id
                LEFT JOIN (
                SELECT
                    t2.class_id,
                    sum(
                    IF
                    ( t2.cnt >= t4.paper_cnt, 1, 0 )) AS pass_cnt
                FROM
                    (
                    SELECT
                        t2.class_id,
                        t2.member_id,
                        sum( t2.cnt ) AS cnt
                    FROM
                        (
                        SELECT
                            t.paper_id,
                            t.class_id,
                            t.member_id,
                        IF
                            ( max( t.score )>= 60, 1, 0 ) AS cnt
                        FROM
                            exercise_done_result t
                        WHERE
                            t.class_id = #{classId}
                            AND t.delete_date IS NULL
                        GROUP BY
                            t.paper_id,
                            t.class_id,
                            t.member_id
                        ) t2
                    GROUP BY
                        t2.class_id,
                        t2.member_id
                    ) t2
                    LEFT JOIN class_dict t3 ON t2.class_id = t3.id
                    LEFT JOIN ( SELECT t.course_id, count( 1 ) AS paper_cnt FROM paper_dict t WHERE t.delete_date IS NULL GROUP BY t.course_id ) t4 ON t3.course_id = t4.course_id
                ) t4 ON t.class_id = t4.class_id
                LEFT JOIN ( SELECT t.class_id, sum( 1 ) AS ask_cnt FROM answering_question t WHERE t.class_id = #{classId} AND t.delete_date IS NULL ) t5 ON t.class_id = t5.class_id
    </select>

    <select id="memberRecentPlay" resultType="com.subsidy.vo.member.ContentVodNewVO">
        SELECT
            t2.id,
231
            ifnull(t1.play_record,0) as play_record
涂亚平 committed
232 233 234 235 236 237 238 239 240
        FROM
            (
            SELECT
                t.vod_id,
                max( t.create_date ) AS create_date,
                t.play_record
            FROM
                vod_play_history t
            WHERE
241 242
                t.member_id = #{memberId}
                AND t.class_id = #{classId}
涂亚平 committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
            ) t1
	LEFT JOIN vod_dict t2 ON t1.vod_id = t2.id
    </select>


    <select id="memberStudyLog" resultType="com.subsidy.vo.administer.MemberStudyLogVO">
        SELECT
        DATE_SUB( t1.create_date, INTERVAL t1.play_length SECOND ) AS startDate,
        t1.create_date AS endDate,
        t1.vod_name,
        '视频学习' AS studyType,
        '有课互联系统' as platForm,
        t1.play_length,
        IF
        ( t2.total_length &lt;= t1.vod_length, t2.total_length, t1.vod_length ) AS total_length
        FROM
        (
        SELECT
        t.vod_id,
        t.create_date,
        t2.vod_name,
        t.play_length,
        t2.vod_length
        FROM
        vod_play_history t
        LEFT JOIN vod_dict t2 ON t.vod_id = t2.id
        WHERE
        t.class_id = #{classId}
        AND t.member_id = #{memberId}
        ) t1
        LEFT JOIN (
        SELECT
        t.vod_id,
        sum( t.play_length ) AS total_length
        FROM
        vod_play_history t
        LEFT JOIN vod_dict t2 ON t.vod_id = t2.id
        WHERE
        t.class_id =  #{classId}
        AND t.member_id = #{memberId}
        GROUP BY
        t.vod_id
        ) t2 ON t1.vod_id = t2.vod_id
        ORDER BY
        t1.create_date DESC
    </select>
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309

    <select id="memberTotalLength" parameterType="long" resultType="integer">
        SELECT
            sum( play_length )
        FROM
            vod_play_history t
        WHERE
            t.delete_date IS NULL
            AND t.member_id = #{memberId}
    </select>

    <select id="memberVodTotalLength" resultType="integer">
        SELECT
            sum( t.play_length )
        FROM
            vod_play_history t
        WHERE
            t.delete_date IS NULL
            AND t.vod_id = #{vodId}
            AND t.member_id = #{memberId}
    </select>
涂亚平 committed
310
</mapper>