using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysRoleMenuService { Task DeleteRoleMenuListByMenuIdList(List menuIdList); Task DeleteRoleMenuListByRoleId(long roleId); Task> GetRoleMenuIdList(List roleIdList); Task GrantMenu(GrantRoleMenuInput input); Task ClearRoleMenuListByTenantId(long tenantId, long manageRoleId); }