using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 门禁 -员工信息 /// public class t_d_employinfoItem { /// /// ID /// public long EmployID { get; set; } /// /// /// public long? WxEmployID { get; set; } /// /// 项目ID /// public string ProjectId { get; set; } /// /// /// public string EmployNO { get; set; } /// /// /// public string EmployName { get; set; } /// /// /// public long? CardNO { get; set; } /// /// /// public int? GroupID { get; set; } /// /// /// public int? IsAttend { get; set; } /// /// /// public int? IsDoor { get; set; } /// /// /// public DateTime? BeginDateTime { get; set; } /// /// /// public DateTime? EndDateTime { get; set; } /// /// /// public string InPassWord { get; set; } /// /// /// public string DepartmentName { get; set; } /// /// /// public string Mailbox { get; set; } /// /// /// public string Mobilephone { get; set; } /// /// /// public string WeiXinNO { get; set; } /// /// /// public string PostName { get; set; } /// /// /// public int? Gender { get; set; } /// /// /// public int? IsDown { get; set; } /// /// /// public int? IsWxDown { get; set; } /// /// /// public string IDCardNo { get; set; } /// /// /// public int? PlayCardNumber { get; set; } /// /// /// public int? PlayCardSum { get; set; } /// /// /// public int? UpdataCloud { get; set; } /// /// /// public string Birthday { get; set; } /// /// /// public string Police { get; set; } /// /// /// public string Nation { get; set; } /// /// /// public string Address { get; set; } /// /// /// public int? UpdateState { get; set; } /// /// /// public DateTime? UpdateDateTime { get; set; } /// /// /// public int? IsSubmarineBack { get; set; } /// /// /// public int? OnSiteState { get; set; } /// /// /// public int? TimeNumber { get; set; } /// /// /// public string CardTimeRecord { get; set; } /// /// /// public string ReservedFieldsOne { get; set; } /// /// /// public string ReservedFieldsTwo { get; set; } /// /// /// public string ReservedFieldsThree { get; set; } /// /// /// public string ReservedFieldsFour { get; set; } /// /// /// public string ReservedFieldsFive { get; set; } } }