|
@@ -0,0 +1,20 @@
|
|
|
+package com.ym.mec.student.controller;
|
|
|
+
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RequestMapping("course")
|
|
|
+@Api(tags = "课程服务")
|
|
|
+@RestController
|
|
|
+public class CourseController extends BaseController {
|
|
|
+
|
|
|
+ @ApiOperation("获取学生所在乐团列表")
|
|
|
+ @GetMapping(value = "/queryUserMusicGroups")
|
|
|
+ public Object queryCoursePage(){
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+}
|