信息
(@PathVariable("id") String id)
| 122 | * 信息 |
| 123 | */ |
| 124 | @RequestMapping("/info/{id}") |
| 125 | public R info(@PathVariable("id") String id){ |
| 126 | UserEntity user = userService.selectById(id); |
| 127 | return R.ok().put("data", user); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * 获取用户的session用户信息 |
nothing calls this directly
no outgoing calls
no test coverage detected