package cn.lili.controller.lmk;
|
|
import cn.lili.base.Result;
|
import cn.lili.modules.lmk.domain.query.WxVideoTagQuery;
|
import cn.lili.modules.lmk.service.VideoTagService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import lombok.RequiredArgsConstructor;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.*;
|
|
/**
|
* 视频标签 前端控制器
|
*
|
* @author xp
|
* @since 2025-05-16
|
*/
|
@Validated
|
@RequiredArgsConstructor
|
@Api(value = "视频标签", tags = "视频标签")
|
@RestController
|
@RequestMapping("/buyer/lmk/video/tag")
|
public class VideoTagController {
|
|
private final VideoTagService videoTagService;
|
|
@GetMapping("/recommend")
|
@ApiOperation(value = "推荐标签", notes = "推荐标签")
|
public Result recommend(WxVideoTagQuery query) {
|
return videoTagService.recommend(query);
|
}
|
|
}
|