Blame view

VodDictMapper.xml 3.2 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
<?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.VodDictMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.VodDictDO">
        <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="content_id" property="contentId" />
        <result column="vod_name" property="vodName" />
        <result column="vod_length" property="vodLength" />
        <result column="vod_type" property="vodType" />
        <result column="vod_size" property="vodSize" />
        <result column="vod_url" property="vodUrl" />
        <result column="vod_code" property="vodCode" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, content_id, vod_name, vod_length, vod_type, vod_size, vod_url, vod_code
    </sql>

涂亚平 committed
28
    <select id="getContendVods" resultType="com.subsidy.vo.vod.GetContendVodsVO">
涂亚平 committed
29
        SELECT
涂亚平 committed
30 31 32 33 34 35 36 37 38
            t.id,
            t.content_id,
            t.vod_name,
            t.vod_length,
            t.vod_type,
            t.vod_size,
            t.vod_url,
            t.teacher_name,
            t.cover_page,
涂亚平 committed
39 40 41
            t2.content,
            t.order_no,
            t.vod_code
涂亚平 committed
42 43 44 45 46 47 48
        FROM
            vod_dict t
            LEFT JOIN course_content t2 ON t.content_id = t2.id
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            AND t.content_id = #{contentId}
涂亚平 committed
49 50 51
            <if test="vodName != null and vodName !=''">
                and vod_name like concat('%',#{vodName} ,'%')
            </if>
涂亚平 committed
52
            order by t.order_no
涂亚平 committed
53 54
    </select>

涂亚平 committed
55 56 57
    <select id="getCourseVods" parameterType="long" resultType="com.subsidy.model.VodDictDO">
        SELECT
            t2.id,
涂亚平 committed
58 59
            t2.vod_name,
            t2.vod_length
涂亚平 committed
60 61 62 63 64 65 66 67 68 69
        FROM
            course_content t
            LEFT JOIN vod_dict t2 ON t.id = t2.content_id
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            and t.course_id = #{courseId}
            <if test="vodName != null and vodName !=''">
                and t2.vod_name like concat('%',#{vodName} ,'%')
            </if>
涂亚平 committed
70
        order by t.id,t2.order_no
涂亚平 committed
71 72 73 74 75 76 77 78 79 80
    </select>

    <select id="classVodCompleteInfo" resultType="com.subsidy.vo.vod.ClassVodCompleteInfoVO">
        SELECT
            count(DISTINCT ( t.member_id )) AS cnt,
            round( sum( t.play_length ) / count( DISTINCT ( t.member_id )), 0 ) studyLength
        FROM
            vod_play_history t
        WHERE
            t.class_id = #{classId}
涂亚平 committed
81
            and t.vod_id = #{vodId}
涂亚平 committed
82 83 84 85 86 87 88
            AND t.member_id IN
        <foreach collection="memberIds" item="id" index="index" open="(" close=")" separator=",">
            #{id}
        </foreach>

    </select>

涂亚平 committed
89 90 91 92
    <update id="updateVodOrderNo">
        update vod_dict t set t.order_no = #{orderNo} where t.id = #{id}
    </update>

涂亚平 committed
93
</mapper>