初始化
This commit is contained in:
47
MySQLAccess/PGModels/TcpReceiveDatum.cs
Normal file
47
MySQLAccess/PGModels/TcpReceiveDatum.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MySQLAccess.PGModels;
|
||||
|
||||
public partial class TcpReceiveDatum
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键ID
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 原始数据
|
||||
/// </summary>
|
||||
public string? OriginalData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 解密后数据
|
||||
/// </summary>
|
||||
public string? DencryptData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 插入日期
|
||||
/// </summary>
|
||||
public DateTime? InsertDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 插入时间(Unix时间戳)
|
||||
/// </summary>
|
||||
public long? InsertUnix { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 端点地址
|
||||
/// </summary>
|
||||
public string? EndPoint { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户端ID
|
||||
/// </summary>
|
||||
public long? ClientId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 命令类型
|
||||
/// </summary>
|
||||
public short? CommandType { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user