using System.Collections.Generic; using System.Threading.Tasks; namespace Magic.Core.Service; public interface ISysUserRoleService { Task DeleteUserRoleListByRoleId(long roleId); Task DeleteUserRoleListByUserId(long userId); Task> GetUserRoleDataScopeIdList(long userId, long orgId); Task> GetUserRoleIdList(long userId); Task GrantRole(UpdateUserInput input); }