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

33 lines
664 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 MqttMonitorDatum
{
/// <summary>
/// 主键ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// MQTT消息负载
/// </summary>
public string? Payload { get; set; }
/// <summary>
/// MQTT主题
/// </summary>
public string? Topic { get; set; }
/// <summary>
/// 创建时间Unix时间戳
/// </summary>
public long? Createtime { get; set; }
/// <summary>
/// 创建时间(日期时间格式)
/// </summary>
public DateTime? CreatetimeD { get; set; }
}