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; } } }