using System; using System.Collections.Generic; namespace MySQLAccess.PGModels; public partial class TcpSendDatum { /// /// 主键ID /// public long Id { get; set; } /// /// 发送数据 /// public string? SendData { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 创建时间(Unix时间戳) /// public long? CreateTimeUnix { get; set; } /// /// 客户端ID /// public int? ClientId { get; set; } /// /// 命令类型 /// public string? CommandType { get; set; } }