修改了日志等级

This commit is contained in:
2025-09-09 16:46:33 +08:00
parent 7fad87fff5
commit e92f5dac5d
5 changed files with 10 additions and 6 deletions

View File

@@ -31,11 +31,13 @@ public class DbMqttServer
/// <summary>
/// 用户名
/// </summary>
[SugarColumn(IsNullable = true)]
public string Username { get; set; }
/// <summary>
/// 密码
/// </summary>
[SugarColumn(IsNullable = true)]
public string Password { get; set; }
/// <summary>
@@ -46,11 +48,13 @@ public class DbMqttServer
/// <summary>
/// 订阅的主题
/// </summary>
[SugarColumn(IsNullable = true)]
public string SubscribeTopic { get; set; }
/// <summary>
/// 发布的主题
/// </summary>
[SugarColumn(IsNullable = true)]
public string PublishTopic { get; set; }
/// <summary>