基本完成MQTT消息的发送

This commit is contained in:
2025-09-10 18:15:31 +08:00
parent a9ca89b44a
commit a43b978097
13 changed files with 127 additions and 23 deletions

View File

@@ -84,4 +84,22 @@ public class DbMqttServer
/// </summary>
[SugarColumn(IsNullable = true)]
public string MessageFormat { get; set; }
/// <summary>
/// 消息头格式
/// </summary>
[SugarColumn(IsNullable = true)]
public string MessageHeader { get; set; }
/// <summary>
/// 消息内容格式
/// </summary>
[SugarColumn(IsNullable = true)]
public string MessageContent { get; set; }
/// <summary>
/// 消息尾格式
/// </summary>
[SugarColumn(IsNullable = true)]
public string MessageFooter { get; set; }
}