|
@@ -83,7 +83,13 @@ public class CourseQwController extends AppBaseController {
|
|
|
}
|
|
|
return R.ok().put("data",course);
|
|
|
}
|
|
|
-
|
|
|
+ @ApiOperation("查询全部公域的课程")
|
|
|
+ @GetMapping("/getAppletCourseVideo")
|
|
|
+ public R getAppletCourseVideo(@RequestParam("courseId") Long courseId)
|
|
|
+ {
|
|
|
+ List<FsUserCourseVideoAppletVO.FsUserCourseVideo> courseVideos = courseService.selectFsUserCourseVideoAppletByCourseId(courseId);
|
|
|
+ return R.ok().put("data",courseVideos);
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation("h5课程简介")
|
|
|
@GetMapping("/getH5CourseByVideoId")
|