namespace Admin.NET.Application { /// /// /// public interface ISysUserRoleService { /// /// /// /// /// Task DeleteUserRoleListByRoleId(long roleId); /// /// /// /// /// Task DeleteUserRoleListByUserId(long userId); /// /// /// /// /// /// Task> GetUserRoleDataScopeIdList(long userId, long orgId); /// /// /// /// /// /// Task> GetUserRoleIdList(long userId, bool checkRoleStatus = true); /// /// /// /// /// Task GrantRole(UpdateUserRoleDataInput input); } }