修改使用TriggerDataService模式

This commit is contained in:
2025-09-23 06:51:29 +08:00
parent 87942a45c8
commit 2d457ae248
20 changed files with 335 additions and 86 deletions

View File

@@ -2,6 +2,7 @@ using System.Collections.Concurrent;
using DMS.Application.DTOs;
using DMS.Application.Interfaces.Management;
using DMS.Application.Services;
using DMS.Application.Services.Management;
using DMS.Core.Models;
namespace DMS.Application.Interfaces;
@@ -17,5 +18,6 @@ public interface IAppDataCenterService
IVariableManagementService VariableManagementService { get; set; }
IVariableTableManagementService VariableTableManagementService { get; set; }
IDeviceManagementService DeviceManagementService { get; set; }
ITriggerManagementService TriggerManagementService { get; set; } // 添加触发器管理服务
IDataLoaderService DataLoaderService { get; set; }
}