using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 行政区域表,数据实体对象
///
[Table("sys_area")]
[Serializable]
public class AreaEntity : BaseEntity
{
///
/// 父级
///
[MaxLength(50)]
public long ParentId { get; set; }
///
/// 层次
///
public int? Layers { get; set; }
///
/// 编码
///
[MaxLength(50)]
public string EnCode { get; set; }
///
/// 名称
///
[MaxLength(100)]
public string FullName { get; set; }
///
/// 简拼
///
[MaxLength(200)]
public string SimpleSpelling { get; set; }
///
/// 父级路径
///
[MaxLength(600)]
public string FullIdPath { get; set; }
///
/// 是否是最后一级
///
public bool IsLast { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 有效标志
///
public bool IsEnabled { get; set; }
public string Description { get; set; }
}
}