using Volo.Abp.Application.Services; using Yi.Framework.Ddd.Application.Contracts; using Yi.Framework.Rbac.Application.Contracts.Dtos.Dept; namespace Yi.Framework.Rbac.Application.Contracts.IServices { /// /// Dept服务抽象 /// public interface IDeptService : IYiCrudAppService { Task> GetChildListAsync(Guid deptId); } }