|
@@ -0,0 +1,26 @@
|
|
|
+package com.ym.mec.student.controller;
|
|
|
+
|
|
|
+import com.ym.mec.auth.api.client.SysUserFeignService;
|
|
|
+import com.ym.mec.biz.service.TempDirectorTrainingCampService;
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
+@Api(tags = "乐队指导训练营活动")
|
|
|
+@RestController
|
|
|
+@RequestMapping("${app-config.url.student:}/tempDirectorTrainingCamp")
|
|
|
+public class TempDirectorTrainingCampController extends BaseController {
|
|
|
+ /**
|
|
|
+ * 服务对象
|
|
|
+ */
|
|
|
+ @Resource
|
|
|
+ private TempDirectorTrainingCampService tempDirectorTrainingCampService;
|
|
|
+ @Resource
|
|
|
+ private SysUserFeignService sysUserFeignService;
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|