using Business.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Net.NetworkInformation;
using System.Numerics;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Bussiness.Model.SystemData
{
///
/// 岗位表
///
public class sys_post: BaseEntity
{
///
/// 主键id
///
[Key]
public long post_id { get; set; }
///
/// 岗位编码
///
[StringLength(50)]
public string post_code { get; set; }
///
/// 岗位名称
///
[StringLength(255)]
public string post_name { get; set; }
///
/// 岗位备注
///
[StringLength(255)]
public string post_remark { get; set; }
///
/// 岗位级别
///
public int post_level { get; set; }
///
/// 岗位路径
///
[StringLength(255)]
public string post_path { get; set; }
///
/// 岗位排序
///
public int post_sort { get; set; }
///
/// 上级岗位
///
public long parent_id { get; set; }
///
/// 部门id
///
public long dept_id { get; set; }
///
/// 数据状态标识 1启用 0停用
///
[StringLength(255)]
public bool state { get; set; }
}
}