|
@@ -38,6 +38,12 @@ public class ContentPlatformPlanController {
|
|
|
return CommonResponse.success(planService.getVideoContentList(param));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "发布内容视频封面截帧列表")
|
|
|
+ @PostMapping("/videoContentCoverFrameList")
|
|
|
+ public CommonResponse<List<String>> getVideoContentCoverFrameList(@RequestBody VideoContentCoverFrameParam param) {
|
|
|
+ return CommonResponse.success(planService.getVideoContentCoverFrameList(param));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "企微计划列表")
|
|
|
@PostMapping("/qw/list")
|
|
|
public CommonResponse<List<QwPlanItemVO>> qwPlanList(@RequestBody QwPlanListParam param) {
|