From c13e4a322e3d58183882478703fe919a88759cb4 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期日, 15 六月 2025 19:27:58 +0800 Subject: [PATCH] 视频发布支持多个商品 --- framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java | 26 +++++++++++++++++++++----- 1 files changed, 21 insertions(+), 5 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 0acc5ad..0a4b93d 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,6 +1,5 @@ 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.AuthorVideoQuery; @@ -24,14 +23,14 @@ * @param form * @return */ - Result add(VideoForm form); + Result add(WxVideoForm form); /** * 淇敼 * @param form * @return */ - Result update(VideoForm form); + Result update(WxVideoForm form); /** * 鎵归噺鍒犻櫎 @@ -73,7 +72,7 @@ * @param form * @return */ - Result publish(VideoForm form); + Result publish(WxVideoForm form); /** * 骞冲彴绔棰戝垎椤� @@ -119,8 +118,9 @@ * 灏忕▼搴忕鐨勮棰戞帹鑽愭帴鍙� * * @return + * @param query */ - Result recommendVideo(AbsQuery query); + Result recommendVideo(VideoQuery query); /** * 鎵归噺鏇存柊瑙嗛鏀惰棌鏁伴噺 @@ -167,4 +167,20 @@ * @return */ Result getAuthorCollectVideoPage(AuthorVideoQuery query); + + /** + * 淇濆瓨瑙嗛涓婚〉鐨勪釜浜轰俊鎭慨鏀� + * + * @param form + * @return + */ + Result homePageInfoEdit(VideoHomePageInfoForm form); + + /** + * 灏忕▼搴�-瑙嗛璇︽儏 + * + * @param id + * @return + */ + Result wxDetail(String id); } -- Gitblit v1.8.0