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