初始化

This commit is contained in:
2025-11-20 16:20:04 +08:00
commit 4230fa4d27
777 changed files with 232488 additions and 0 deletions

View 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; }
}
}