using System; using System.Collections.Generic; namespace MySQLAccess.PGModels; public partial class TcpCloseDatum { /// /// 主键ID /// public long Id { get; set; } /// /// 服务器IP地址 /// public string? WwwIp { get; set; } /// /// 服务器端口 /// public int? WwwPort { get; set; } /// /// 关闭原因 /// public string? CloseReason { get; set; } /// /// 数据提取时间 /// public DateTime? DataTakeOutTime { get; set; } /// /// 创建时间(Unix时间戳) /// public long? CreatetimeUnix { get; set; } /// /// 客户端ID /// public long? ClientId { get; set; } /// /// 真实地址 /// public string? RealAddress { get; set; } }