初始化
This commit is contained in:
38
LogCap/Entity/Monitor_Host.cs
Normal file
38
LogCap/Entity/Monitor_Host.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LogCap.Entity
|
||||
{
|
||||
|
||||
public class MonitorLog
|
||||
{
|
||||
public long HotelCode { get; set; }
|
||||
public int HotelID { 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 string? XiaoDuCUID { get; set; }
|
||||
public string? TiaoMaoCUID { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class MonitorRedis : MonitorLog
|
||||
{
|
||||
public string RemoteEndPointIP { get; set; }
|
||||
public int RemoteEndPointPort { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user