namespace GxPress.Result.Department { /// /// 部门树 /// public class DepartmentTreeResult { /// /// 部门id /// public int Id { get; set; } /// /// 部门名称 /// public string Name { get; set; } /// /// 是否有下级节点 /// public bool HasChildren { get; set; } } }