From 355c1a7e343e0d3f75befac1cf49be07ec11b4e7 Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期五, 13 六月 2025 14:52:00 +0800 Subject: [PATCH] insert 完成厨神标签后台页面接口(增删改查/上架/下架) --- framework/src/main/resources/mapper/lmk/VideoMapper.xml | 82 +++++++++++++++++++++++++++++++++++----- 1 files changed, 71 insertions(+), 11 deletions(-) diff --git a/framework/src/main/resources/mapper/lmk/VideoMapper.xml b/framework/src/main/resources/mapper/lmk/VideoMapper.xml index 304943f..f7a65ba 100644 --- a/framework/src/main/resources/mapper/lmk/VideoMapper.xml +++ b/framework/src/main/resources/mapper/lmk/VideoMapper.xml @@ -23,6 +23,9 @@ <result column="weight" property="weight" /> <result column="audit_pass_time" property="auditPassTime" /> <result column="update_time" property="updateTime" /> + <result column="video_content_type" property="videoContentType" /> + <result column="video_type" property="videoType" /> + <result column="video_imgs" property="videoImgs" /> </resultMap> <!-- 寰俊鎺ㄨ崘瑙嗛 --> @@ -38,6 +41,9 @@ <result column="collect_num" property="collectNum" /> <result column="comment_num" property="commentNum" /> <result column="status" property="status" /> + <result column="video_content_type" property="videoContentType" /> + <result column="video_type" property="videoType" /> + <result column="video_imgs" property="videoImgs" /> </resultMap> @@ -49,7 +55,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -60,6 +65,9 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id, LM.nick_name as authorName FROM @@ -78,7 +86,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -89,6 +96,9 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id, LM.nick_name as authorName FROM @@ -107,7 +117,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -118,6 +127,9 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id, LM.nick_name as authorName FROM @@ -132,7 +144,7 @@ ) AS LVT ON LV.id = LVT.video_id </if> WHERE - LV.delete_flag = 0 + LV.delete_flag = 0 AND LV.video_type = #{query.videoType} <if test="query.title != null and query.title != ''">AND LV.title LIKE CONCAT('%', #{query.title}, '%')</if> <if test="query.authorId != null and query.authorId != ''">AND LV.author_id = #{query.authorId}</if> <if test="query.status != null and query.status != ''">AND LV.status = #{query.status}</if> @@ -147,7 +159,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -158,6 +169,9 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id, LM.nick_name as authorName, LM.face as authorAvatar @@ -165,7 +179,7 @@ lmk_video LV LEFT JOIN li_member LM ON LV.author_id = LM.id WHERE - LV.delete_flag = 0 AND LV.status = '1' + LV.delete_flag = 0 AND LV.status = '1' AND LV.video_type = #{query.videoType} </select> @@ -236,7 +250,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -247,6 +260,9 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id, LM.nick_name as authorName, LM.face as authorAvatar @@ -259,6 +275,7 @@ AND LV.status = '1' </if> AND LV.author_id = #{query.authorId} + AND LV.video_type = #{query.videoType} ORDER BY LV.collect_num DESC </select> @@ -271,7 +288,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -282,6 +298,9 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id, LM.nick_name as authorName, LM.face as authorAvatar @@ -290,7 +309,7 @@ INNER JOIN lmk_video LV ON LMC.ref_id = LV.id AND LV.delete_flag = 0 AND LV.status = '1' LEFT JOIN li_member LM ON LV.author_id = LM.id WHERE - LMC.delete_flag = 0 AND LMC.user_id = #{query.authorId} AND LMC.collect_type = 'video' + LMC.delete_flag = 0 AND LMC.user_id = #{query.authorId} AND LMC.collect_type = 'video' AND LV.video_type = #{query.videoType} ORDER BY LMC.create_time DESC </select> @@ -315,7 +334,6 @@ LV.video_duration, LV.video_file_key, LV.title, - LV.goods_id, LV.goods_view_num, LV.goods_order_num, LV.recommend, @@ -326,11 +344,53 @@ LV.weight, LV.audit_pass_time, LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, LV.id FROM lmk_video LV WHERE LV.delete_flag = 0 AND LV.id = #{id} </select> - + <select id="healthPage" resultMap="BaseResultMap"> + SELECT + LV.author_id, + LV.cover_url, + LV.video_fit, + LV.video_duration, + LV.video_file_key, + LV.title, + LV.goods_view_num, + LV.goods_order_num, + LV.recommend, + LV.status, + LV.play_num, + LV.collect_num, + LV.comment_num, + LV.weight, + LV.audit_pass_time, + LV.update_time, + LV.video_content_type, + LV.video_type, + LV.video_imgs, + LV.id, + LM.nick_name as authorName + FROM + lmk_video LV + LEFT JOIN li_member LM ON LV.author_id = LM.id + <if test="query.tagList != null and query.tagList.size > 0"> + INNER JOIN ( + SELECT DISTINCT video_id + FROM lmk_video_tag_ref + WHERE video_tag_id IN + <foreach collection="query.tagList" open="(" item="tagId" close=")" separator=",">#{tagId}</foreach> + ) AS LVT ON LV.id = LVT.video_id + </if> + WHERE + LV.delete_flag = 0 AND LV.video_type = #{query.videoType} + <if test="query.title != null and query.title != ''">AND LV.title LIKE CONCAT('%', #{query.title}, '%')</if> + <if test="query.authorId != null and query.authorId != ''">AND LV.author_id = #{query.authorId}</if> + <if test="query.status != null and query.status != ''">AND LV.status = #{query.status}</if> + </select> </mapper> -- Gitblit v1.8.0