xiangpei
2025-06-03 45fccac802160458965a727bb21056abfc3bc528
buyer-api/src/main/java/cn/lili/controller/lmk/VideoController.java
@@ -69,7 +69,7 @@
    @GetMapping("/recommend")
    @ApiOperation(value = "视频推荐", notes = "视频推荐")
    public Result recommendVideo(AbsQuery query) {
    public Result recommendVideo(VideoQuery query) {
        return videoService.recommendVideo(query);
    }
@@ -90,4 +90,10 @@
    public Result getAuthorVideoPage(AuthorVideoQuery query) {
        return videoService.getAuthorVideoPage(query);
    }
    @GetMapping("/author-collect-video-page")
    @ApiOperation(value = "获取视频主页作者收藏的视频分页", notes = "获取视频主页作者收藏的视频分页")
    public Result getAuthorCollectVideoPage(AuthorVideoQuery query) {
        return videoService.getAuthorCollectVideoPage(query);
    }
}