using System.Diagnostics; using DMS.Core.Helper; using DMS.Core.Interfaces.Repositories; using DMS.Core.Models; using DMS.Infrastructure.Data; using DMS.Infrastructure.Entities; namespace DMS.Infrastructure.Repositories; /// /// Mqtt仓储类,用于操作DbMqtt实体 /// public class MqttServerRepository : BaseRepository, IMqttServerRepository { public MqttServerRepository(SqlSugarDbContext dbContext) : base(dbContext) { } public async Task GetByIdAsync(int id) => throw new NotImplementedException(); public async Task> GetAllAsync() => throw new NotImplementedException(); public async Task AddAsync(MqttServer entity) => throw new NotImplementedException(); public async Task UpdateAsync(MqttServer entity) => throw new NotImplementedException(); public async Task DeleteAsync(MqttServer entity) => throw new NotImplementedException(); }