From 07a8e96750473fbdf676993191c41155ddf8146e Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 01 七月 2025 15:55:20 +0800
Subject: [PATCH] 视频点赞实现

---
 framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java |   44 ++++++++++++++++++++++++++++++--------------
 1 files changed, 30 insertions(+), 14 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 0671480..054521f 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
@@ -2,6 +2,7 @@
 
 import cn.lili.group.Add;
 import cn.lili.modules.lmk.domain.entity.MyCollect;
+import cn.lili.modules.lmk.domain.entity.ThumbsUpRecord;
 import cn.lili.modules.lmk.domain.entity.Video;
 import cn.lili.modules.lmk.domain.form.*;
 import cn.lili.modules.lmk.domain.query.*;
@@ -20,20 +21,6 @@
  * @since 2025-05-16
  */
 public interface VideoService extends IService<Video> {
-
-    /**
-     * 娣诲姞
-     * @param form
-     * @return
-     */
-    Result add(WxVideoForm form);
-
-    /**
-     * 淇敼
-     * @param form
-     * @return
-     */
-    Result update(WxVideoForm form);
 
     /**
      * 鎵归噺鍒犻櫎
@@ -265,4 +252,33 @@
      * @param collect
      */
     void mqCollectChange(MyCollect collect);
+
+    /**
+     * 閲嶅缓瑙嗛es绱㈠紩
+     *
+     * @return
+     */
+    Result recreateEsIndex();
+
+    /**
+     * 淇敼瑙嗛鐐硅禐鐘舵��
+     *
+     * @param form
+     * @return
+     */
+    Result changeThumbsUp(ThumbsUpRecordForm form);
+
+    /**
+     * mq淇敼瑙嗛鐐硅禐鐘舵��
+     *
+     * @param thumbsUpRecord
+     */
+    void mqChangeThumbsUp(ThumbsUpRecord thumbsUpRecord);
+
+    /**
+     * 鎵归噺鏇存柊瑙嗛鐐硅禐鏁伴噺
+     *
+     * @param numList
+     */
+    void updateThumbsUpNumBatch(List<CollectTypeNumVO> numList);
 }

--
Gitblit v1.8.0