13 lines
259 B
C#
13 lines
259 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 设备效率分析 服务实现
|
|
/// </summary>
|
|
public class EfficiencyService : IEfficiencyService
|
|
{
|
|
// TODO: 实现 设备效率分析 相关方法
|
|
}
|
|
}
|