using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("OA_StaffResume")] public partial class OA_StaffResume { public OA_StaffResume(){ } /// /// 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_G_Avatar {get;set;} /// /// Desc:姓名(个人信息) /// Default: /// Nullable:True /// public string R_G_Name {get;set;} /// /// Desc:性别(个人信息) /// Default: /// Nullable:True /// public string R_G_Sex {get;set;} /// /// Desc:工作年限(个人信息) /// Default:0 /// Nullable:True /// public string R_G_WorkYear {get;set;} /// /// Desc:学历 /// Default: /// Nullable:True /// public string R_G_Degree {get;set;} /// /// Desc:证件类型(个人信息) /// Default: /// Nullable:True /// public string R_G_DocumentsType {get;set;} /// /// Desc:证件号(个人信息) /// Default: /// Nullable:True /// public string R_G_DocumentsNumber {get;set;} /// /// Desc:邮箱(个人信息) /// Default: /// Nullable:True /// public string R_G_Email {get;set;} /// /// Desc:手机号码(个人信息) /// Default: /// Nullable:True /// public string R_G_Moblie {get;set;} /// /// Desc:公司电话(个人信息) /// Default: /// Nullable:True /// public string R_G_WorkPhone {get;set;} /// /// Desc:家庭电话(个人信息) /// Default: /// Nullable:True /// public string R_G_HomePhone {get;set;} /// /// Desc:现居省 /// Default: /// Nullable:True /// public string R_G_NowProvince {get;set;} /// /// Desc:现居市 /// Default: /// Nullable:True /// public string R_G_NowCity {get;set;} /// /// Desc:现居区 /// Default: /// Nullable:True /// public string R_G_NowArea {get;set;} /// /// Desc:现居地址 /// Default: /// Nullable:True /// public string R_G_NowAddress {get;set;} /// /// Desc:籍贯省 /// Default: /// Nullable:True /// public string R_G_OldProvence {get;set;} /// /// Desc:籍贯市 /// Default: /// Nullable:True /// public string R_G_OldCity {get;set;} /// /// Desc:籍贯区 /// Default: /// Nullable:True /// public string R_G_OldArea {get;set;} /// /// Desc:籍贯地址 /// Default: /// Nullable:True /// public string R_G_OldAdress {get;set;} /// /// Desc:创建时间 /// Default:DateTime.Now /// Nullable:True /// public DateTime? R_G_CreatTime {get;set;} /// /// Desc:简历语言/中文1,English2 /// Default: /// Nullable:True /// public int? R_G_Language {get;set;} /// /// Desc:目前年薪 /// Default: /// Nullable:True /// public string R_G_YearsMoney {get;set;} /// /// Desc:求职状态 /// Default: /// Nullable:True /// public string R_G_WorkStatus {get;set;} /// /// Desc:QQ /// Default: /// Nullable:True /// public string R_G_QQ {get;set;} /// /// Desc:你的主页 /// Default: /// Nullable:True /// public string R_G_YouHome {get;set;} /// /// Desc:身高(cm) /// Default: /// Nullable:True /// public int? R_G_YouHeight {get;set;} /// /// Desc:体重(kg) /// Default: /// Nullable:True /// public int? R_G_YouWeight {get;set;} /// /// Desc:婚姻状况/已婚1,未婚2 /// Default: /// Nullable:True /// public int? R_G_MarryStatus {get;set;} /// /// Desc:政治面貌 /// Default: /// Nullable:True /// public string R_G_YouPolitical {get;set;} /// /// Desc:简历状态/展示中1,已撤下2 /// Default: /// Nullable:True /// public int? R_G_Status {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;} } }