using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 门禁 -刷卡进出场 /// public class t_d_validcardeventItem { /// /// ID /// public int ValidEventID { get; set; } /// /// 项目ID /// public string ProjectId { get; set; } /// /// /// public DateTime? RecordDateTime { get; set; } /// /// /// public long? CardNO { get; set; } /// /// /// public int? ConsumerID { get; set; } /// /// /// public int? InOrOut { get; set; } /// /// /// public int? ControllerID { get; set; } /// /// /// public int? ReaderNO { get; set; } /// /// /// public int? RecordFlashLoc { get; set; } /// /// /// public string RecordAll { get; set; } /// /// /// public string JPGPath { get; set; } /// /// /// public int? IsDown { get; set; } /// /// /// public string EquipmentSN { get; set; } /// /// /// public string ConsumerNO { get; set; } /// /// /// public string EmployNO { get; set; } /// /// /// public string EmployName { get; set; } /// /// /// public string CardType { get; set; } /// /// /// public string Card { get; set; } /// /// /// public string DepartmentID { get; set; } /// /// /// public string DepartmentName { get; set; } /// /// /// public string ControllerSN { get; set; } /// /// /// public string DoorID { get; set; } /// /// /// public string DoorName { get; set; } /// /// /// public string ReaderName { get; set; } /// /// /// public string AreaID { get; set; } /// /// /// public string AreaName { get; set; } /// /// /// public string WorkType { get; set; } /// /// /// public string Positions { get; set; } /// /// /// public string IDCardNo { get; set; } } }