初始化

This commit is contained in:
2025-12-11 14:04:39 +08:00
commit 1f65bbf628
2676 changed files with 838983 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class TcpConnDatum
{
/// <summary>
/// 主键ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 服务器IP地址
/// </summary>
public string? WwwIp { get; set; }
/// <summary>
/// 服务器端口
/// </summary>
public int? WwwPort { get; set; }
/// <summary>
/// 客户端ID
/// </summary>
public int? ClientId { get; set; }
/// <summary>
/// 连接时间
/// </summary>
public DateTime? ConnectTime { get; set; }
/// <summary>
/// 连接时间Unix时间戳
/// </summary>
public long? ConnectTimeUnix { get; set; }
/// <summary>
/// 真实地址
/// </summary>
public string? RealAddress { get; set; }
}