From ba524bc13846fcbedb231b4bebc9a1a0927c5f70 Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期五, 30 五月 2025 15:44:15 +0800 Subject: [PATCH] 活动用户登录id可用后整理 --- framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java | 76 +++++++++++++++++++++++++++++++++++++- 1 files changed, 74 insertions(+), 2 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java b/framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java index 583109b..38011b9 100644 --- a/framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java +++ b/framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java @@ -1,9 +1,12 @@ package cn.lili.modules.lmk.service; +import cn.lili.base.AbsQuery; import cn.lili.modules.lmk.domain.entity.Video; +import cn.lili.modules.lmk.domain.form.*; +import cn.lili.modules.lmk.domain.query.ManagerVideoQuery; +import cn.lili.modules.lmk.domain.vo.CollectTypeNumVO; import com.baomidou.mybatisplus.extension.service.IService; import cn.lili.base.Result; -import cn.lili.modules.lmk.domain.form.VideoForm; import cn.lili.modules.lmk.domain.query.VideoQuery; import java.util.List; @@ -55,7 +58,7 @@ * @param id * @return */ - Result detail(Integer id); + Result detail(String id); /** * 鍒楄〃 @@ -70,4 +73,73 @@ * @return */ Result publish(VideoForm form); + + /** + * 骞冲彴绔棰戝垎椤� + * + * @param query + * @return + */ + Result managerPage(ManagerVideoQuery query); + + /** + * 棣栭〉鎺ㄨ崘璁剧疆 + * + * @param form + * @return + */ + Result recommendSet(VideoRecommendForm form); + + /** + * 瀹℃牳 + * + * @param form + * @return + */ + Result auditing(VideoAuditingForm form); + + /** + * 涓婃灦 + * + * @param id + * @return + */ + Result up(String id); + + /** + * 涓嬫灦 + * + * @param form + * @return + */ + Result down(VideoDownForm form); + + /** + * 灏忕▼搴忕鐨勮棰戞帹鑽愭帴鍙� + * + * @return + */ + Result recommendVideo(AbsQuery query); + + /** + * 鎵归噺鏇存柊瑙嗛鏀惰棌鏁伴噺 + * + * @param numList + */ + void updateCollectNumBatch(List<CollectTypeNumVO> numList); + + /** + * 鎵归噺鏇存柊瑙嗛璇勮鏁伴噺 + * + * @param numList + */ + void updateCommentNumBatch(List<CollectTypeNumVO> numList); + + /** + * 淇濆瓨瑙嗛瑙傜湅璁板綍 + * + * @param form + * @return + */ + Result saveViewRecord(VideoFootPrintForm form); } -- Gitblit v1.8.0