yegang 2 vuotta sitten
vanhempi
commit
2840716f94
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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();
     }