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.
56 lines
1.3 KiB
56 lines
1.3 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 组织表,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_organize")]
|
|
[Serializable]
|
|
public class OrganizeEntity : BaseEntity
|
|
{
|
|
/// <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; }
|
|
|
|
public string CategoryName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序码
|
|
/// </summary>
|
|
public int SortCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否有效
|
|
/// </summary>
|
|
public bool IsEnabled { get; set; }
|
|
}
|
|
}
|