From 9f14a435039c4159cdc015bb567adc6a3f84306f Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 22 Dec 2021 15:35:29 +0800 Subject: [PATCH] 20211216 --- src/main/resources/mapper/video/VideoMasterInfoMapper.xml | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/video/VideoMasterInfoMapper.xml b/src/main/resources/mapper/video/VideoMasterInfoMapper.xml index d22497f..92238e5 100644 --- a/src/main/resources/mapper/video/VideoMasterInfoMapper.xml +++ b/src/main/resources/mapper/video/VideoMasterInfoMapper.xml @@ -14,6 +14,12 @@ <if test="record.title != null and record.title != ''"> and a.title like concat('%', #{record.title}, '%') </if> + <if test="record.isUp != null"> + and a.is_up = #{record.isUp} + </if> + <if test="record.isFree != null"> + and a.is_free = #{record.isFree} + </if> group by a.id </select> @@ -32,6 +38,8 @@ <result property="thumb" column="item_thumb" /> <result property="sourceId" column="source_id" /> <result property="sourceName" column="sourceName" /> + <result property="timeLength" column="item_time_length" /> + <result property="seq" column="seq" /> </collection> </resultMap> @@ -42,9 +50,34 @@ b.name, b.thumb item_thumb, b.source_id, + b.time_length item_time_length, + b.seq, c.name sourceName from video_master_info a, video_master_items b, video_master_source c where a.id=b.master_id and a.id=#{id} and b.source_id=c.id </select> + <select id="selectVideoListInPage" resultType="cc.mrbird.febs.video.vo.VideoListVo"> + select + a.*, + count(b.id) itemCnt, + (select c.time_length from video_master_source c where b.source_id=c.id limit 1) timeLength + from video_master_info a + inner join video_master_items b on a.id=b.master_id + inner join video_master_data d on a.id=d.master_id + <where> + 1=1 + <if test="record.isUp != null"> + and a.is_up = #{record.isUp} + </if> + <if test="record.isFree != null"> + and a.is_free = #{record.isFree} + </if> + <if test="record.query != null and record.query != ''"> + and title like concat('%', #{record.query}, '%') + </if> + </where> + group by a.id + order by d.play_cnt desc, a.created_time desc + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1