From a66f503d098a6b1b56e42e6e455bd00f88bcc32c Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 22 五月 2025 18:11:06 +0800 Subject: [PATCH] xxl-job readme --- framework/src/main/java/cn/lili/modules/lmk/service/VideoService.java | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 53 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 583109b..d17750f 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,11 @@ 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.query.ManagerVideoQuery; import com.baomidou.mybatisplus.extension.service.IService; import cn.lili.base.Result; import cn.lili.modules.lmk.domain.form.VideoForm; @@ -55,7 +60,7 @@ * @param id * @return */ - Result detail(Integer id); + Result detail(String id); /** * 鍒楄〃 @@ -70,4 +75,51 @@ * @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); } -- Gitblit v1.8.0