Browse Source

Merge branch 'master' of https://gitee.com/zouxuan/mec

zouxuan 5 năm trước cách đây
mục cha
commit
7031e5a142

+ 21 - 0
mec-web/src/main/java/com/ym/mec/web/controller/education/DemoController.java

@@ -0,0 +1,21 @@
+package com.ym.mec.web.controller.education;
+
+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("edu")
+@Api(tags = "Demo")
+@RestController
+public class DemoController extends BaseController {
+
+
+    @PostMapping("/queryPage")
+    public Object queryPage(){
+        return succeed();
+    }
+}

+ 21 - 0
mec-web/src/main/java/com/ym/mec/web/controller/student/DemoController.java

@@ -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();
+    }
+}

+ 21 - 0
mec-web/src/main/java/com/ym/mec/web/controller/system/DemoController.java

@@ -0,0 +1,21 @@
+package com.ym.mec.web.controller.system;
+
+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("system")
+@Api(tags = "Demo")
+@RestController
+public class DemoController extends BaseController {
+
+
+    @PostMapping("/queryPage")
+    public Object queryPage(){
+        return succeed();
+    }
+}

+ 21 - 0
mec-web/src/main/java/com/ym/mec/web/controller/teacher/DemoController.java

@@ -0,0 +1,21 @@
+package com.ym.mec.web.controller.teacher;
+
+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("teacher")
+@Api(tags = "Demo")
+@RestController
+public class DemoController extends BaseController {
+
+
+    @PostMapping("/queryPage")
+    public Object queryPage(){
+        return succeed();
+    }
+}