using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 组织表,数据实体对象
///
[Table("sys_organize")]
[Serializable]
public class OrganizeEntity : BaseEntity
{
///
/// 父级
///
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; }
}
}