4 Commits 250f9129d9 ... 89cab74edb

Author SHA1 Message Date
  yegang 89cab74edb add 2 years ago
  yegang c53bdd029c this is a new operate 13:40 2 years ago
  yegang 7537932099 this is a new operate 13:40 2 years ago
  yegang 45f2e7f0e7 this is a new operate 13:40 2 years ago
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/main/java/com/sw/controller/TestController.java

+ 6 - 0
src/main/java/com/sw/controller/TestController.java

@@ -28,6 +28,7 @@ public class TestController {
     public  String  test(){
         List<SysTest> list = sysTestService.list();
         System.out.println(list);
+        System.out.println("this is a new operate");
         return "test";
     }
     @RequestMapping("/get/{id}")
@@ -36,4 +37,9 @@ public class TestController {
         SysUser user = sysUserService.getById(id);
         return user.getId();
     }
+
+    @RequestMapping("/add")
+    public void getUser(){
+        System.out.println("this is add method");
+    }
 }