一期项目框架搭建

This commit is contained in:
“hsc”
2026-08-27 17:10:56 +08:00
parent 9b852e5c95
commit 03d46fb473
97 changed files with 1222 additions and 14 deletions
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 消息告警 服务实现
/// </summary>
public class AlertMessageService : IAlertMessageService
{
// TODO: 实现 消息告警 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 告警规则 服务实现
/// </summary>
public class AlertRuleService : IAlertRuleService
{
// TODO: 实现 告警规则 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 数据大屏 服务实现
/// </summary>
public class BigScreenService : IBigScreenService
{
// TODO: 实现 数据大屏 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 设备看板 服务实现
/// </summary>
public class DeviceDashboardService : IDeviceDashboardService
{
// TODO: 实现 设备看板 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 设备效率分析 服务实现
/// </summary>
public class EfficiencyService : IEfficiencyService
{
// TODO: 实现 设备效率分析 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 巡检管理 服务实现
/// </summary>
public class PatrolService : IPatrolService
{
// TODO: 实现 巡检管理 相关方法
}
}
@@ -0,0 +1,12 @@
using Service.Interface;
namespace Service.Implement
{
/// <summary>
/// 统计报表 服务实现
/// </summary>
public class StatisticsReportService : IStatisticsReportService
{
// TODO: 实现 统计报表 相关方法
}
}