|
|
@@ -273,6 +273,14 @@ public class FsUserCourseVideoController extends BaseController
|
|
|
return toAjax(fsUserCourseVideoService.batchDown(videoIds));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("视频上架")
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:userCourseVideo:batchUp')")
|
|
|
+ @Log(title = "课堂视频", businessType = BusinessType.UPDATE)
|
|
|
+ @PostMapping("/batchUp/{videoIds}")
|
|
|
+ public AjaxResult batchUp(@PathVariable String[] videoIds) {
|
|
|
+ return toAjax(fsUserCourseVideoService.batchUp(videoIds));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("批量修改视频封面图")
|
|
|
@PreAuthorize("@ss.hasPermi('course:userCourseVideo:batchEditCover')")
|
|
|
@Log(title = "课堂视频", businessType = BusinessType.UPDATE)
|