using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Admin.Core.Model.Sys
{
///
///岗位信息表实体类
///
[Table("SysPost")]
[SugarTable("SysPost", "admin_sqlite")]
public class SysPost
{
///
/// 岗位ID
///
[Key]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required]
public int PostID { get; set; }
///
/// 岗位编码
///
public string PostCode { get; set; }
///
/// 岗位名称
///
public string PostName { get; set; }
///
/// 显示顺序
///
public int? PostSort { get; set; }
///
/// 状态(0正常 1停用)
///
public int? Status { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 创建者
///
public string CreateBy { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新者
///
public string UpdateBy { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
}
}