using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysUserDataScopeService { Task DeleteUserDataScopeListByOrgIdList(List orgIdList); Task DeleteUserDataScopeListByUserId(long userId); Task> GetUserDataScopeIdList(long userId); Task GrantData(UpdateUserInput input); }