|
@@ -95,7 +95,7 @@ public class SysDeptController extends BaseController
|
|
*/
|
|
*/
|
|
@PreAuthorize(hasPermi = "system:dept:user")
|
|
@PreAuthorize(hasPermi = "system:dept:user")
|
|
@GetMapping(value = "/user/{id}")
|
|
@GetMapping(value = "/user/{id}")
|
|
- public AjaxResult getUserInfo(@PathVariable Long id)
|
|
|
|
|
|
+ public AjaxResult getUserInfo(@PathVariable(name = "id") Long id)
|
|
{
|
|
{
|
|
return AjaxResult.success(deptService.getUserInfo(id));
|
|
return AjaxResult.success(deptService.getUserInfo(id));
|
|
}
|
|
}
|