using AutoMapper;
using System;
using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 输入对象模型
///
[AutoMap(typeof(OrganizeEntity))]
[Serializable]
public class OrganizeInputDto : IInputDto
{
///
/// 父级id
///
public long ParentId { get; set; }
///
/// 所属层级
///
public int Layers { get; set; }
///
/// 功能代码
///
public string EnCode { get; set; }
///
/// 名称
///
public string FullName { get; set; }
///
/// 类别Id
///
public string CategoryName { get; set; }
///
/// 上级Id
///
public string ManagerName { get; set; }
///
/// 排序
///
public int SortCode { get; set; }
///
/// 是否启用
///
public bool IsEnabled { get; set; }
///
/// 备注
///
public string Description { get; set; }
///
/// 主键
///
public long Id { get; set; }
}
}