2024-06-13 16:23:37 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using ZR.Model.MES.dev.Dto;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.MES.dev.IService
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 设备数据分析
|
|
|
|
|
|
/// </summary>
|
2024-06-13 16:25:13 +08:00
|
|
|
|
public interface IDeviceDataAnalysisServcie
|
2024-06-13 16:23:37 +08:00
|
|
|
|
{
|
|
|
|
|
|
List<DeviceStatusAnalysisResultDto> DefaultTypePie(DeviceDefaultDto devicedefault);
|
2024-06-14 14:35:26 +08:00
|
|
|
|
DeviceFaultBarResultDto FaultTypeBar(DeviceDefaultDto devicedefault);
|
2024-06-13 16:23:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|