From b13706ac876d0ab5d4d6e38a59b66cc323e86e3a Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期四, 21 八月 2025 14:41:44 +0800 Subject: [PATCH] 奖品,抽奖活动,重置密码 --- framework/src/main/java/cn/lili/modules/lmk/mapper/VideoCommentMapper.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoCommentMapper.java b/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoCommentMapper.java index a632138..94bc442 100644 --- a/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoCommentMapper.java +++ b/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoCommentMapper.java @@ -1,6 +1,7 @@ package cn.lili.modules.lmk.mapper; import cn.lili.modules.lmk.domain.entity.VideoComment; +import cn.lili.modules.lmk.domain.query.VideoCommentMangerQuery; import cn.lili.modules.lmk.domain.vo.CollectTypeNumVO; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.mapper.BaseMapper; @@ -26,6 +27,9 @@ * @return */ VideoCommentVO getById(String id); + + + IPage getManagerPage (IPage page, @Param("query") VideoCommentMangerQuery query); /** * 鍒嗛〉 @@ -54,4 +58,11 @@ * @return */ List<CollectTypeNumVO> countNumGroupByVideo(); + + /** + * 鎵归噺鏇存柊瑙嗛璇勮鐐硅禐鏁� + * + * @param chunk + */ + void updateCommentThumbsUpNumBatch(@Param("list") List<CollectTypeNumVO> chunk); } -- Gitblit v1.8.0