using System.Collections.Generic; namespace Admin.Core.Repository.Personnel.Output { /// /// 组织机构导出 /// public class OrganizationDataOutput { /// /// 租户Id /// public long? TenantId { get; set; } /// /// 组织机构Id /// public long Id { get; set; } /// /// 上级组织机构 /// public long? ParentId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 启用 /// public bool Enabled { get; set; } = true; /// /// 排序 /// public int Sort { get; set; } public List Childs { get; set; } } }