From 9fe0aefb466a87815ef450cb4ef99405dad63b4e Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期一, 17 十一月 2025 11:49:11 +0800
Subject: [PATCH] 中奖用户打* 解决首页视频显示不全问题
---
framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 56 insertions(+), 1 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 16f3932..7ccd220 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.*;
@@ -61,7 +62,15 @@
* @param form
* @return
*/
- Result publish(WxVideoForm form);
+ Result publish(WxVideoForm form); /**
+ * 鍙戝竷瑙嗛
+ *
+ * @param form
+ * @return
+ */
+ Result systemPublish(WxVideoForm form);
+
+ Result sysUpdatePublish(WxVideoForm form);
/**
* 骞冲彴绔棰戝垎椤�
@@ -164,6 +173,14 @@
Result getAuthorCollectVideoPage(AuthorVideoQuery query);
/**
+ * 鑾峰彇瑙嗛涓婚〉浣滆�呯偣璧炶棰戝垎椤�
+ *
+ * @param query
+ * @return
+ */
+ Result getAuthorLikeVideoPage(AuthorVideoQuery query);
+
+ /**
* 淇濆瓨瑙嗛涓婚〉鐨勪釜浜轰俊鎭慨鏀�
*
* @param form
@@ -258,4 +275,42 @@
* @return
*/
Result recreateEsIndex();
+
+ /**
+ * 淇敼瑙嗛鐐硅禐鐘舵��
+ *
+ * @param form
+ * @return
+ */
+ Result changeThumbsUp(ThumbsUpRecordForm form);
+
+ /**
+ * mq淇敼瑙嗛鐐硅禐鐘舵��
+ *
+ * @param thumbsUpRecord
+ */
+ void mqChangeThumbsUp(ThumbsUpRecord thumbsUpRecord);
+
+ /**
+ * 鎵归噺鏇存柊瑙嗛鐐硅禐鏁伴噺
+ *
+ * @param numList
+ */
+ void updateThumbsUpNumBatch(List<CollectTypeNumVO> numList);
+
+ /**
+ * 瑙嗛鎼滅储-es
+ *
+ * @param query
+ * @return
+ */
+ Result esSearch(VideoEsQuery query);
+
+ /**
+ * 鑾峰彇鎾斁璁板綍
+ *
+ * @param query
+ * @return
+ */
+ Result getHistoryPage(VideoHistoryQuery query);
}
--
Gitblit v1.8.0