一期项目框架搭建

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,10 @@
namespace Service.Interface
{
/// <summary>
/// 消息告警 服务接口
/// </summary>
public interface IAlertMessageService
{
// TODO: 定义 消息告警 相关方法
}
}
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 告警规则 服务接口
/// </summary>
public interface IAlertRuleService
{
// TODO: 定义 告警规则 相关方法
}
}
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 数据大屏 服务接口
/// </summary>
public interface IBigScreenService
{
// TODO: 定义 数据大屏 相关方法
}
}
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 设备看板 服务接口
/// </summary>
public interface IDeviceDashboardService
{
// TODO: 定义 设备看板 相关方法
}
}
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 设备效率分析 服务接口
/// </summary>
public interface IEfficiencyService
{
// TODO: 定义 设备效率分析 相关方法
}
}
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 巡检管理 服务接口
/// </summary>
public interface IPatrolService
{
// TODO: 定义 巡检管理 相关方法
}
}
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 统计报表 服务接口
/// </summary>
public interface IStatisticsReportService
{
// TODO: 定义 统计报表 相关方法
}
}