From 817c7de04cb6b74164a42ed0e6050ae5b91b0ef1 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 29 五月 2025 18:14:00 +0800
Subject: [PATCH] 视频评论增加被回复人头像字段

---
 framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java |   36 ++++++++++++++++++++++++++++++++----
 1 files changed, 32 insertions(+), 4 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 1464d39..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,13 +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.VideoAuditingForm;
-import cn.lili.modules.lmk.domain.form.VideoDownForm;
-import cn.lili.modules.lmk.domain.form.VideoRecommendForm;
+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;
 
@@ -114,4 +113,33 @@
      * @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