using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { [Table("SYS_USERINFO")] public class Ent_SYS_USERINFO { #region Model private int _id; private int _userid; private int? _postcode; private string _phone; private string _officephone; private string _emailaddress; private string _secondphone; private int? _workcode; private int? _sexcode; private DateTime? _birthday; private int? _nationcode; private string _idnumber; private int? _marrycode; private int? _identitycode; private string _hometown; private string _accountlocation; private int? _xueli; private int? _zhicheng; private string _graduationschool; private string _specialty; private string _photooldname; private string _photonewname; private string _phototype; private string _resumeoldname; private string _resumenewname; private string _resumetype; private string _hujisuozaidi; private string _hujipaichusuo; private DateTime? _workdate; private DateTime? _jinrudate; private string _carnumber; private string _qq; private string _webchatopenid; private DateTime? _createdate; private string _createuser; private DateTime? _updatedate; private string _updateuser; /// /// 主键ID /// [Column("id", IsPrimaryKey = true), AutoIncrement] public int ID { set { _id = value; } get { return _id; } } /// /// 用户ID,外键 /// public int USERID { set { _userid = value; } get { return _userid; } } /// /// 职务,编码 /// public int? POSTCODE { set { _postcode = value; } get { return _postcode; } } /// /// 手机号码 /// public string PHONE { set { _phone = value; } get { return _phone; } } /// /// 办公电话 /// public string OFFICEPHONE { set { _officephone = value; } get { return _officephone; } } /// /// Email /// public string EMAILADDRESS { set { _emailaddress = value; } get { return _emailaddress; } } /// /// 第二手机号码 /// public string SECONDPHONE { set { _secondphone = value; } get { return _secondphone; } } /// /// 在岗状态,编码 /// public int? WORKCODE { set { _workcode = value; } get { return _workcode; } } /// /// 性别,编码 /// public int? SEXCODE { set { _sexcode = value; } get { return _sexcode; } } /// /// 出生日期 /// public DateTime? BIRTHDAY { set { _birthday = value; } get { return _birthday; } } /// /// 民族,编码 /// public int? NATIONCODE { set { _nationcode = value; } get { return _nationcode; } } /// /// 身份证号码 /// public string IDNUMBER { set { _idnumber = value; } get { return _idnumber; } } /// /// 婚姻状况,编码 /// public int? MARRYCODE { set { _marrycode = value; } get { return _marrycode; } } /// /// 政治面貌,编码 /// public int? IDENTITYCODE { set { _identitycode = value; } get { return _identitycode; } } /// /// 籍贯,编码(关联至TBCode_Area的CodeValue) /// public string HomeTown { set { _hometown = value; } get { return _hometown; } } /// /// 户籍所在地 /// public string ACCOUNTLOCATION { set { _accountlocation = value; } get { return _accountlocation; } } /// /// 学历,编码 /// public int? XUELI { set { _xueli = value; } get { return _xueli; } } /// /// 职称,编码 /// public int? ZHICHENG { set { _zhicheng = value; } get { return _zhicheng; } } /// /// 毕业院校 /// public string GRADUATIONSCHOOL { set { _graduationschool = value; } get { return _graduationschool; } } /// /// 专业 /// public string SPECIALTY { set { _specialty = value; } get { return _specialty; } } /// /// 照片原文件名 /// public string PHOTOOLDNAME { set { _photooldname = value; } get { return _photooldname; } } /// /// 照片新文件名 /// public string PHOTONEWNAME { set { _photonewname = value; } get { return _photonewname; } } /// /// 照片格式 /// public string PHOTOTYPE { set { _phototype = value; } get { return _phototype; } } /// /// 简历原文件名 /// public string RESUMEOLDNAME { set { _resumeoldname = value; } get { return _resumeoldname; } } /// /// 简历新文件名 /// public string RESUMENEWNAME { set { _resumenewname = value; } get { return _resumenewname; } } /// /// 简历格式 /// public string RESUMETYPE { set { _resumetype = value; } get { return _resumetype; } } /// /// 户籍所在地,编码(关联至TBCode_Area的CodeValue) /// public string HuJiSuoZaiDi { set { _hujisuozaidi = value; } get { return _hujisuozaidi; } } /// /// 户籍所在派出所 /// public string HUJIPAICHUSUO { set { _hujipaichusuo = value; } get { return _hujipaichusuo; } } /// /// 工作时间 /// public DateTime? WORKDATE { set { _workdate = value; } get { return _workdate; } } /// /// 加入公司时间 /// public DateTime? JINRUDATE { set { _jinrudate = value; } get { return _jinrudate; } } /// /// 车牌号 /// public string CARNUMBER { set { _carnumber = value; } get { return _carnumber; } } /// /// QQ号 /// public string QQ { set { _qq = value; } get { return _qq; } } /// /// 微信公众账号对应的OpenID /// public string WEBCHATOPENID { set { _webchatopenid = value; } get { return _webchatopenid; } } /// /// 创建时间 /// public DateTime? CREATEDATE { set { _createdate = value; } get { return _createdate; } } /// /// 创建者 /// public string CREATEUSER { set { _createuser = value; } get { return _createuser; } } /// /// 修改时间 /// public DateTime? UPDATEDATE { set { _updatedate = value; } get { return _updatedate; } } /// /// 修改者 /// public string UPDATEUSER { set { _updateuser = value; } get { return _updateuser; } } #endregion Model } }