初始化

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,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; }
}