using System;
namespace Admin.Core.Service.Personnel.Organization.Output
{
public class OrganizationListOutput
{
///
/// 主键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; }
///
/// 创建时间
///
public DateTime? CreatedTime { get; set; }
}
}