51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 语音控制监控类
|
|||
|
|
/// </summary>
|
|||
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|