using AutoMapper;
using System;
using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 输入对象模型
///
[AutoMap(typeof(AreaEntity))]
[Serializable]
public class AreaInputDto : IInputDto
{
///
/// 设置或获取
///
public long ParentId { get; set; }
///
/// 设置或获取
///
public long? Layers { get; set; }
///
/// 设置或获取
///
public string EnCode { get; set; }
///
/// 设置或获取
///
public string FullName { get; set; }
///
/// 设置或获取
///
public string SimpleSpelling { get; set; }
///
/// 设置或获取
///
public string FullIdPath { get; set; }
///
/// 设置或获取
///
public bool? IsLast { get; set; }
///
/// 设置或获取
///
public long? SortCode { get; set; }
///
/// 设置或获取
///
public bool? IsEnabled { get; set; }
///
/// 设置或获取
///
public string Description { get; set; }
///
/// 设置或获取
///
public long Id { get; set; }
}
}