using System; using System.Collections.Generic; namespace Znyc.Cloudcar.Admin.Security.Dtos { /// /// 输出对象模型 /// [Serializable] public class OrganizeOutputDto { /// /// 设置或获取 /// public long Id { get; set; } /// /// 父级 /// public long ParentId { get; set; } /// /// 层次 /// public int Layers { get; set; } /// /// 编码 /// public string EnCode { get; set; } /// /// 名称 /// public string FullName { get; set; } /// /// 负责人 /// public string ManagerName { get; set; } /// /// 类型 /// public string CategoryName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 是否有效 /// public bool IsEnabled { get; set; } /// /// 是否删除 /// public bool IsDeleted { get; set; } /// /// 子集 /// public List Children { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } /// /// 修改时间 /// public DateTime ModifiedTime { get; set; } } }