Files
Yi.Framework/Yi.Furion.Net6/Yi.Furion.Application/Rbac/Services/IDeptService.cs

14 lines
432 B
C#

using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
using Yi.Furion.Core.Rbac.Dtos.Dept;
namespace Yi.Furion.Application.Rbac.Services
{
/// <summary>
/// Dept服务抽象
/// </summary>
public interface IDeptService : ICrudAppService<DeptGetOutputDto, DeptGetListOutputDto, long, DeptGetListInputVo, DeptCreateInputVo, DeptUpdateInputVo>
{
Task<List<long>> GetChildListAsync(long deptId);
}
}