using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("OA_StaffResumeIntention")] public partial class OA_StaffResumeIntention { public OA_StaffResumeIntention(){ } /// /// 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_I_WorkProvence {get;set;} /// /// Desc:工作地点-市(求职意向) /// Default: /// Nullable:True /// public string R_I_WorkCity {get;set;} /// /// Desc:行业(求职意向) /// Default: /// Nullable:True /// public string R_I_Industry {get;set;} /// /// Desc:职位类别(求职意向) /// Default:0 /// Nullable:True /// public int? R_I_Consultants_id {get;set;} /// /// Desc:职位(求职意向) /// Default:0 /// Nullable:True /// public int? R_I_Postid {get;set;} /// /// Desc:职位(求职意向) /// Default:0 /// Nullable:True /// public string R_I_PostName {get;set;} /// /// Desc:期望薪水(求职意向) /// Default: /// Nullable:True /// public string R_I_HopeMoney {get;set;} /// /// Desc:到岗时间(求职意向) /// Default: /// Nullable:True /// public string R_I_WorkTime {get;set;} /// /// Desc:自我评价(求职意向) /// Default: /// Nullable:True /// public string R_I_YouDetail {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;} } }