yegang 2 năm trước cách đây
mục cha
commit
2840716f94
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/main/java/com/sw/controller/TestController.java

+ 1 - 1
src/main/java/com/sw/controller/TestController.java

@@ -31,7 +31,7 @@ public class TestController {
         return "test";
     }
     @RequestMapping("/get/{id}")
-    public Integer getUser(@PathVariable int id){
+    public String getUser(@PathVariable int id){
         SysUser user = sysUserService.getById(id);
         return user.getId();
     }