2025-07-21 18:49:49 +08:00
|
|
|
using DMS.Core.Interfaces.Repositories;
|
2025-07-19 11:11:01 +08:00
|
|
|
using DMS.Infrastructure.Data;
|
2025-07-21 18:49:49 +08:00
|
|
|
using DMS.Infrastructure.Entities;
|
2025-07-17 17:27:16 +08:00
|
|
|
|
2025-07-18 22:21:16 +08:00
|
|
|
namespace DMS.Infrastructure.Repositories;
|
2025-07-17 17:27:16 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
2025-07-21 18:49:49 +08:00
|
|
|
/// 变量与MQTT服务器别名关联的数据仓库。
|
2025-07-17 17:27:16 +08:00
|
|
|
/// </summary>
|
2025-07-21 18:49:49 +08:00
|
|
|
public class VariableMqttAliasRepository : BaseRepository<DbVariableMqttAlias>, IVariableMqttAliasRepository
|
2025-07-17 17:27:16 +08:00
|
|
|
{
|
2025-07-19 14:36:34 +08:00
|
|
|
public VariableMqttAliasRepository(SqlSugarDbContext dbContext)
|
|
|
|
|
: base(dbContext)
|
2025-07-17 17:27:16 +08:00
|
|
|
{
|
|
|
|
|
}
|
2025-07-21 18:49:49 +08:00
|
|
|
|
|
|
|
|
public async Task<VariableMqttAlias> GetByIdAsync(int id) => throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public async Task<List<VariableMqttAlias>> GetAllAsync() => throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public async Task<VariableMqttAlias> AddAsync(VariableMqttAlias entity) => throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public async Task<int> UpdateAsync(VariableMqttAlias entity) => throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public async Task<int> DeleteAsync(VariableMqttAlias entity) => throw new NotImplementedException();
|
|
|
|
|
}
|