fix根据职位找人

This commit is contained in:
shuo.wang
2025-05-22 19:02:20 +08:00
parent 9a5946ecf5
commit dea59e63bf
4 changed files with 5 additions and 5 deletions

View File

@@ -49,6 +49,6 @@ public class SysRoleController {
@PostMapping(path = "/findUserListByRole")
@ApiOperation("根据角色获取用户")
public ResponseResult<List<EnterpriseUserDO>> findUserListByRole(@RequestBody SysRoleRequest request) {
return ResponseResult.success(userAuthMappingService.findUserListByRole(request));
return ResponseResult.success(userAuthMappingService.findUserListByRole(request,true));
}
}