29 lines
886 B
C#
29 lines
886 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 设备数据分析
|
|
/// </summary>
|
|
public interface IDeviceDataAnalysisServcie
|
|
{
|
|
List<DeviceStatusAnalysisResultDto> 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();
|
|
|
|
|
|
}
|
|
}
|