初始化
This commit is contained in:
47
MySQLAccess/PGModels/TcpCloseDatum.cs
Normal file
47
MySQLAccess/PGModels/TcpCloseDatum.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MySQLAccess.PGModels;
|
||||
|
||||
public partial class TcpCloseDatum
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键ID
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务器IP地址
|
||||
/// </summary>
|
||||
public string? WwwIp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务器端口
|
||||
/// </summary>
|
||||
public int? WwwPort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 关闭原因
|
||||
/// </summary>
|
||||
public string? CloseReason { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数据提取时间
|
||||
/// </summary>
|
||||
public DateTime? DataTakeOutTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间(Unix时间戳)
|
||||
/// </summary>
|
||||
public long? CreatetimeUnix { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户端ID
|
||||
/// </summary>
|
||||
public long? ClientId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 真实地址
|
||||
/// </summary>
|
||||
public string? RealAddress { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user