namespace OASystem.Domain.Entities.System { /// /// 岗位表 /// [SugarTable("Sys_JobPost")] public class Sys_JobPost:EntityBase { /// /// 公司Id /// [SugarColumn(IsNullable =false)] public int CompanyId { get; set; } /// /// 部门Id /// [SugarColumn(IsNullable = false)] public int DepId { get; set; } /// /// 岗位名称 /// [SugarColumn(IsNullable = false,Length =50)] public string JobName { get; set; } } }