namespace OASystem.Domain.Entities.System
{
    /// 
    /// 岗位表
    /// 
    [SugarTable("Sys_JobPost")]
    public class Sys_JobPost:EntityBase
    {
        /// 
        /// 公司Id
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CompanyId { get; set; }
        /// 
        /// 部门Id
        /// 
        [SugarColumn(IsNullable = true,ColumnDataType ="int")]
        public int DepId { get; set; }
        /// 
        /// 岗位名称
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
        public string JobName { get; set; }
       
    }
    #region 附加字段
    #endregion
    public class Sys_JobPostI:Sys_JobPost
    {
        public string CompanyName { get; set; }
        public string DepName { get; set; }
    }
}