You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

77 lines
1.7 KiB

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