|
@@ -0,0 +1,21 @@
|
|
|
+package com.ym.mec.web.controller.student;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+
|
|
|
+@RequestMapping("student")
|
|
|
+@Api(tags = "Demo")
|
|
|
+@RestController
|
|
|
+public class DemoController extends BaseController {
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping("/queryPage")
|
|
|
+ public Object queryPage(){
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+}
|