using System; using System.Collections.Generic; using System.Text; namespace BaseInfoClient.Response.Visitor { public class VisitorResponseItem { public int Id { get; set; } public DateTime ExpiryTime { get; set; } public DateTime EntryTime { get; set; } public string Unit { get; set; } public string BuildCode { get; set; } public int ProjectCode { get; set; } /// /// 10邀约 20申请 /// public int Type { get; set; } public string Reason { get; set; } public string VisitorName { get; set; } /// /// 访客电话 /// public string VisitorPhone { get; set; } public int CheckUserId { get; set; } /// /// 审核人姓名 /// public string CheckUserName { get; set; } public string Room { get; set; } /// /// 状态 10 审核中 20 已通过 30 已拒绝 /// public int State { get; set; } } public class QueryMenJinVisitorRequest { public int Id { get; set; } public string OpenId { get; set; } public DateTime InTime { get; set; } /// /// 10 申请 20 邀约 /// public int Type { get; set; } public int OwnerId { get; set; } } public class QueryDeviceByBuildResponse { public string Ip { get; set; } public string PassWord { get; set; } public string DeviceNo { get; set; } public int Port { get; set; } } }