2025-07-21 18:49:49 +08:00
|
|
|
|
2025-09-06 16:12:30 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2025-07-21 18:49:49 +08:00
|
|
|
namespace DMS.Core.Interfaces.Repositories
|
|
|
|
|
{
|
2025-10-18 17:18:09 +08:00
|
|
|
public interface IMqttAliasRepository : IBaseRepository<MqttAlias>
|
2025-07-21 18:49:49 +08:00
|
|
|
{
|
2025-09-07 08:51:18 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步获取所有变量与MQTT别名关联。
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>包含所有变量与MQTT别名关联实体的列表。</returns>
|
2025-10-06 17:39:03 +08:00
|
|
|
Task<List<MqttAlias>> GetAllAsync();
|
2025-07-21 18:49:49 +08:00
|
|
|
}
|
|
|
|
|
}
|