using System.Collections.Generic; using System.Threading.Tasks; namespace DMS.Core.Interfaces.Repositories { public interface IVariableMqttAliasRepository : IBaseRepository { /// /// 异步获取所有变量与MQTT别名关联。 /// /// 包含所有变量与MQTT别名关联实体的列表。 Task> GetAllAsync(); } }