添加了事件服务,并完成了设备状态改变后写入数据库

This commit is contained in:
2025-09-12 14:59:32 +08:00
parent cb739f4cb9
commit 6796a06325
13 changed files with 113 additions and 164 deletions

View File

@@ -0,0 +1,11 @@
using System;
using DMS.Application.Events;
namespace DMS.Application.Interfaces;
/// <summary>
/// 设备监视服务接口,用于监视设备的状态变化
/// </summary>
public interface IDeviceMonitoringService
{
}