Files
2025-12-11 14:04:39 +08:00

38 lines
741 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class TcpSendDatum
{
/// <summary>
/// 主键ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 发送数据
/// </summary>
public string? SendData { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 创建时间Unix时间戳
/// </summary>
public long? CreateTimeUnix { get; set; }
/// <summary>
/// 客户端ID
/// </summary>
public int? ClientId { get; set; }
/// <summary>
/// 命令类型
/// </summary>
public string? CommandType { get; set; }
}