2025-07-19 14:36:34 +08:00
|
|
|
using AutoMapper;
|
|
|
|
|
using DMS.Core.Enums;
|
|
|
|
|
using DMS.Core.Helper;
|
|
|
|
|
using DMS.Core.Models;
|
|
|
|
|
using DMS.Infrastructure.Data;
|
|
|
|
|
using DMS.Infrastructure.Entities;
|
2025-07-19 22:29:50 +08:00
|
|
|
using DMS.Infrastructure.Interfaces;
|
2025-07-19 14:36:34 +08:00
|
|
|
using DMS.Infrastructure.Repositories;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DMS.Infrastructure.Services
|
|
|
|
|
{
|
2025-07-21 14:35:17 +08:00
|
|
|
public class MqttService:BaseService<MqttServer, DbMqttServer, MqttRepository>
|
2025-07-19 14:36:34 +08:00
|
|
|
{
|
2025-07-19 22:29:50 +08:00
|
|
|
public MqttService(IMapper mapper, MqttRepository repository) : base(mapper, repository)
|
2025-07-19 14:36:34 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|