using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CommonEntity { public class MonitorLog { public long HotelCode{get;set;} public int HostID{get;set;} public string HostNumber { get; set; } public string RoomNo{get;set;} public string LanIP { get; set; } public int LanPort { get; set; } public string WWW_IP { get; set; } public int WWW_Port { get; set; } public string MAC{get;set;} public string CommandType { get; set; } public string SendOrReceive { get; set; } public string Data { get; set; } public string CreateTime { get; set; } } public class MonitorRedis:MonitorLog { public string RemoteEndPointIP { get; set; } public int RemoteEndPointPort { get; set; } } public class Monitor_Host { public string HotelCode { get; set; } public string Key_HostNumber { get; set; } public string HostID { get; set; } public string RoomNumber { get; set; } public string MAC { get; set; } public string CreateDateTime { get; set; } } /// /// 语音控制监控类 /// public class IOT_Monitor_Host { public string HotelCode { get; set; } public string HotelID { get; set; } public string RoomNumber { get; set; } public string CreateDateTime { get; set; } } }