Files
KinginfoGateway/src/Plugin/ThingsGateway.Plugin.Mqtt/MqttServer/MqttServerProperty.cs
2025-09-15 17:35:49 +08:00

84 lines
2.7 KiB
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.

//------------------------------------------------------------------------------
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
// 此代码版权除特别声明外的代码归作者本人Diego所有
// 源代码使用协议遵循本仓库的开源协议及附加协议
// Gitee源代码仓库https://gitee.com/diego2098/ThingsGateway
// Github源代码仓库https://github.com/kimdiego2098/ThingsGateway
// 使用文档https://thingsgateway.cn/
// QQ群605534569
//------------------------------------------------------------------------------
using BootstrapBlazor.Components;
using MQTTnet.Protocol;
namespace ThingsGateway.Plugin.Mqtt;
/// <summary>
/// <inheritdoc/>
/// </summary>
public class MqttServerProperty : BusinessPropertyWithCacheIntervalScript
{
/// <summary>
/// IP
/// </summary>
[DynamicProperty]
public string IP { get; set; } = "127.0.0.1";
/// <summary>
/// 端口
/// </summary>
[DynamicProperty]
public int Port { get; set; } = 1883;
[DynamicProperty]
public MqttQualityOfServiceLevel MqttQualityOfServiceLevel { get; set; } = MqttQualityOfServiceLevel.AtMostOnce;
/// <summary>
/// WebSocket端口
/// </summary>
[DynamicProperty]
public int WebSocketPort { get; set; } = 8083;
/// <summary>
/// 允许连接的ID(前缀)
/// </summary>
[DynamicProperty]
public string StartWithId { get; set; }
/// <summary>
/// 允许匿名登录
/// </summary>
[DynamicProperty]
public bool AnonymousEnable { get; set; } = true;
/// <summary>
/// 允许Rpc写入
/// </summary>
[DynamicProperty]
public bool DeviceRpcEnable { get; set; }
/// <summary>
/// Rpc写入Topic
/// </summary>
[DynamicProperty(Remark = "实际的写入主题为固定通配 {RpcWrite/+} 其中RpcWrite为该属性填入内容+通配符是请求GUID值返回结果主题会在主题后添加Response , 也就是{RpcWrite/+/Response}")]
public string RpcWriteTopic { get; set; }
/// <summary>
/// 数据请求Topic
/// </summary>
[DynamicProperty(Remark = "这个主题接收到任何数据都会把全部的信息发送到变量/设备/报警主题中")]
public string RpcQuestTopic { get; set; }
/// <summary>
/// RPC脚本
/// </summary>
[DynamicProperty]
[AutoGenerateColumn(Visible = true, IsVisibleWhenEdit = false, IsVisibleWhenAdd = false)]
public string? BigTextScriptRpc { get; set; }
[DynamicProperty]
[AutoGenerateColumn(Visible = true, IsVisibleWhenEdit = false, IsVisibleWhenAdd = false)]
public override string? BigTextScriptPluginEventDataModel { get; set; }
}