namespace Easy.Admin.Application.Organization.Dtos; public class SysOrgPageOutput { /// /// 组织机构Id /// public long Id { get; set; } /// /// 父级Id /// public long? ParentId { get; set; } /// /// 部门名称 /// public string Name { get; set; } /// /// 部门编码 /// public string Code { get; set; } /// /// 可用状态 /// public AvailabilityStatus Status { get; set; } /// /// 排序值(值越小越靠前) /// public int Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } public List Children { get; set; } = new(); }