13 lines
257 B
C#
13 lines
257 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 设备看板 服务实现
|
|
/// </summary>
|
|
public class DeviceDashboardService : IDeviceDashboardService
|
|
{
|
|
// TODO: 实现 设备看板 相关方法
|
|
}
|
|
}
|