using System.Collections.Generic; namespace GxPress.Result.Department { /// /// 部门树 /// public class DepartmentTreeResult { /// /// 部门id /// public int Id { get; set; } /// /// 部门名称 /// public string Name { get; set; } /// /// 是否有下级节点 /// public int ParentId { get; set; } /// /// 是否有下级节点 /// public bool HasChildren { get; set; } /// /// 子集 /// /// public List Children { get; set; } } }