| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("/user/queryRoleByUserId/{userId}") |
| | | @PostMapping("/user/queryRoleByUserId/{userId}") |
| | | R<SysRole> queryRoleByUserId(@PathVariable("userId") Long userId); |
| | | |
| | | |
| | |
| | | * @param roleId |
| | | * @return |
| | | */ |
| | | @GetMapping("/user/queryRoleByRoleId/{roleId}") |
| | | @PostMapping("/user/queryRoleByRoleId/{roleId}") |
| | | R<SysRole> queryRoleByRoleId(@PathVariable("roleId") Long roleId); |
| | | |
| | | /** |
| | |
| | | */ |
| | | @PostMapping("/user/queryUserByUserName") |
| | | R<SysUser> queryUserByUserName(@RequestBody String userName); |
| | | |
| | | |
| | | /** |
| | | * 新增加用户信息 |
| | | * @param user |
| | | */ |
| | | @PostMapping("/user/addSysUser") |
| | | R addSysUser(@RequestBody SysUser user); |
| | | |
| | | |
| | | /** |
| | | * 重置密码 |
| | | * @param user |
| | | * @return |
| | | */ |
| | | @PostMapping("/user/resetPassword") |
| | | R resetPassword(@RequestBody SysUser user); |
| | | } |