Procházet zdrojové kódy

this is a new operate 13:40

yegang před 2 roky
rodič
revize
7537932099

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

@@ -37,4 +37,10 @@ public class TestController {
         SysUser user = sysUserService.getById(id);
         return user.getId();
     }
+
+    @RequestMapping("/get/{id}")
+    public void add(@PathVariable int id){
+        System.out.println("this is a add");
+    }
+
 }