using SqlSugar; namespace DMS.Infrastructure.Entities; /// /// 数据库实体:对应数据库中的 VariableMqttAliases 表。 /// [SugarTable("VariableMqttAliases")] public class DbVariableMqttAlias { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 外键,指向 Variables 表的 Id。 /// public int VariableId { get; set; } /// /// 外键,指向 MqttServers 表的 Id。 /// public int MqttServerId { get; set; } /// /// 针对此特定[变量-服务器]连接的发布别名。 /// public string Alias { get; set; } }