From 930f47e1bd5f07a794a16d0ea48ee229d84bd7a6 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 23 五月 2025 10:08:22 +0800 Subject: [PATCH] 新增定时任务模块 --- framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java b/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java index 2b513d9..8a3ada6 100644 --- a/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java +++ b/framework/src/main/java/cn/lili/modules/lmk/service/impl/MyCollectServiceImpl.java @@ -2,6 +2,7 @@ import cn.lili.common.security.context.UserContext; import cn.lili.modules.lmk.domain.vo.SimpleMyCollectVO; +import cn.lili.modules.lmk.domain.vo.CollectTypeNumVO; import com.baomidou.mybatisplus.core.metadata.IPage; import cn.lili.modules.lmk.domain.entity.MyCollect; import cn.lili.modules.lmk.mapper.MyCollectMapper; @@ -137,4 +138,9 @@ public List<SimpleMyCollectVO> getCollectsByVideoIds(List<String> videoIds) { return baseMapper.getCollectsByVideoIds(videoIds, UserContext.getCurrentUserId()); } + + @Override + public List<CollectTypeNumVO> countNumGroupByType(String type) { + return baseMapper.countNumGroupByType(type); + } } -- Gitblit v1.8.0