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