using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("OA_StaffResumeEducation")] public partial class OA_StaffResumeEducation { public OA_StaffResumeEducation(){ } /// /// Desc:主键--标识ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:简历拥有者 /// Default: /// Nullable:True /// public Guid? Memberid {get;set;} /// /// Desc:教育经历开始时间(年)(教育经历) /// Default: /// Nullable:True /// public string R_E_StudyStartTime {get;set;} /// /// Desc:教育经历结束时间(年)(教育经历) /// Default: /// Nullable:True /// public string R_E_StudyEndTime {get;set;} /// /// Desc:学校名称(教育经历) /// Default: /// Nullable:True /// public string R_E_SchoolName {get;set;} /// /// Desc:专业名称(教育经历) /// Default: /// Nullable:True /// public string R_E_Professional {get;set;} /// /// Desc:专业描述(教育经历) /// Default: /// Nullable:True /// public string R_E_ProfessionalDetail {get;set;} /// /// Desc:排序 /// Default:0 /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} } }