using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DOAN.Model.MES.dev.Dto;
namespace DOAN.Service.MES.dev.IService
{
///
/// 设备数据分析
///
public interface IDeviceDataAnalysisServcie
{
List DefaultTypePie(DeviceDefaultDto devicedefault);
DeviceFaultBarResultDto FaultTypeBar(DeviceDefaultDto devicedefault);
DeviceFaultLineResultDto FaultTypeLine(DeviceDefaultDto devicedefault);
DeviceRepairBarResultDto FaultTypeBarByDay(DeviceDefaultDto devicedefault);
TaskLineResultDto TaskLinebyDay(DeviceDefaultDto devicedefault);
PersonnelResponseResultDto PersonResponse(DeviceDefaultDto devicedefault);
FullScreenTotal GetAllTotal();
}
}