feat: 菜单管理重构及MQTT服务器功能增强

This commit is contained in:
2025-10-05 17:07:17 +08:00
parent 80ea47e627
commit 6b55211dbf
23 changed files with 287 additions and 184 deletions

View File

@@ -0,0 +1,20 @@
using DMS.Application.DTOs;
namespace DMS.Application.DTOs
{
/// <summary>
/// 创建MQTT服务器及其关联菜单的数据传输对象
/// </summary>
public class CreateMqttWithMenuDto
{
/// <summary>
/// MQTT服务器信息
/// </summary>
public MqttServerDto MqttServer { get; set; }
/// <summary>
/// 菜单项信息
/// </summary>
public MenuBeanDto MqttServerMenu { get; set; }
}
}