Files
Web_IoTBase_Sever_Prod/MySQLAccess/PGModels/TcpReceiveDatum.cs
2025-12-11 14:04:39 +08:00

48 lines
953 B
C#
Raw 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 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; }
}