From d9901a1d21c42372d8b38a081844177e578980a6 Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期五, 15 八月 2025 11:34:05 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev --- framework/src/main/resources/mapper/lmk/VideoCommentMapper.xml | 34 +++++++++++++++++++++++++++++++++- 1 files changed, 33 insertions(+), 1 deletions(-) diff --git a/framework/src/main/resources/mapper/lmk/VideoCommentMapper.xml b/framework/src/main/resources/mapper/lmk/VideoCommentMapper.xml index 59e68f2..eb8528b 100644 --- a/framework/src/main/resources/mapper/lmk/VideoCommentMapper.xml +++ b/framework/src/main/resources/mapper/lmk/VideoCommentMapper.xml @@ -14,7 +14,7 @@ <result column="master_comment_id" property="masterCommentId" /> <result column="status" property="status" /> <result column="thumbs_up_num" property="thumbsUpNum" /> - <result column="userId" property="userId" /> + <result column="user_id" property="userId" /> <result column="user_nickname" property="userNickname" /> <result column="user_avatar" property="userAvatar" /> <result column="create_time" property="createTime" /> @@ -49,6 +49,38 @@ LVC.id = #{id} AND LVC.delete_flag = 0 </select> + <select id="getManagerPage" resultMap="BaseResultMap"> + SELECT + LVC.video_id, + LVC.comment_content, + LVC.reply_id, + LVC.reply_user_id, + LVC.reply_user_nickname, + LVC.master_comment_id, + LVC.status, + LVC.thumbs_up_num, + LVC.id, + LVC.user_id, + LVC.user_nickname, + LVC.user_avatar, + LVC.create_time + FROM + lmk_video_comment LVC + WHERE + LVC.video_id = #{query.videoId} AND LVC.delete_flag = 0 + <if test="query.commentContent != null and query.commentContent !=''"> + AND LVC.comment_content like concat('%',#{query.commentContent},'%') + </if> + <if test="query.nickName != null and query.nickName !=''"> + AND LVC.user_nickname like concat('%',#{query.nickName},'%') + </if> + <if test="query.startTime != null"> + AND LVC.create_time >= #{query.startTime} + </if> + <if test="query.endTime != null"> + AND LVC.create_time <= #{query.endTime} + </if> + </select> <select id="getPage" resultMap="BaseResultMap"> SELECT -- Gitblit v1.8.0