Files
qhmes/yy-admin-master/YY.Admin.Services/Service/Org/ISysOrgService.cs

19 lines
451 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YY.Admin.Services.Service
{
public interface ISysOrgService
{
/// <summary>
/// 根据节点Id获取子节点Id集合(包含自己)
/// </summary>
/// <param name="pid"></param>
/// <returns></returns>
Task<List<long>> GetChildIdListWithSelfById(long pid);
}
}