using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysRoleDataScopeService { Task DeleteRoleDataScopeListByOrgIdList(List orgIdList); Task DeleteRoleDataScopeListByRoleId(long roleId); Task> GetRoleDataScopeIdList(List roleIdList); Task GrantDataScope(GrantRoleDataInput input); }