Merge branch 'feature/REQ-1102' of https://axzsource.com/universal/infrastructure/backend/tyr into feature/REQ-1102

This commit is contained in:
yangsong 2023-09-08 19:03:52 +08:00
commit 6885458035

View File

@ -34,8 +34,9 @@ public class RoleServiceImpl implements RoleService {
@Override
public ApiListResult<SaasRoleVO> queryByIdentityIdType(Long identityId, Integer identityType) {
// 查询人关联的角色id
Set<Long> roleIds = roleUserRelationDao.queryByIdentityIdType(identityId, identityType).stream().map(SaasRoleUserRelation::getRoleId).collect(Collectors.toSet());
// todo
// 根据角色列表查询角色列表
return ApiListResult.ok(null);
}
}