using System; using System.Collections.Generic; namespace MySQLAccess.PGModels; public partial class TcpReceiveDatum { /// /// 主键ID /// public long Id { get; set; } /// /// 原始数据 /// public string? OriginalData { get; set; } /// /// 解密后数据 /// public string? DencryptData { get; set; } /// /// 插入日期 /// public DateTime? InsertDate { get; set; } /// /// 插入时间(Unix时间戳) /// public long? InsertUnix { get; set; } /// /// 端点地址 /// public string? EndPoint { get; set; } /// /// 客户端ID /// public long? ClientId { get; set; } /// /// 命令类型 /// public short? CommandType { get; set; } }