zhuangpei-mesbackend/DOAN.Service/MES/dev/IService/IDeviceDataAnalysisServcie.cs

34 lines
1.1 KiB
C#
Raw Normal View History

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;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.dev.Dto;
2025-06-12 19:10:15 +08:00
using DOAN.Model;
using DOAN.Model.MES.dev;
2024-06-13 16:23:37 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.MES.dev.IService
2024-06-13 16:23:37 +08:00
{
/// <summary>
/// 设备数据分析
/// </summary>
2024-06-13 16:25:13 +08:00
public interface IDeviceDataAnalysisServcie
2024-06-13 16:23:37 +08:00
{
2025-06-12 19:10:15 +08:00
List<DeviceTaskExecute> GetTaskExecuteList(DeviceDataListDto parm);
List<DeviceDataListTableDto> GetDeviceRepairList(DeviceDataListDto parm);
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);
DeviceFaultLineResultDto FaultTypeLine(DeviceDefaultDto devicedefault);
DeviceRepairBarResultDto FaultTypeBarByDay(DeviceDefaultDto devicedefault);
TaskLineResultDto TaskLinebyDay(DeviceDefaultDto devicedefault);
2024-06-17 14:20:48 +08:00
PersonnelResponseResultDto PersonResponse(DeviceDefaultDto devicedefault);
2024-06-18 09:04:17 +08:00
FullScreenTotal GetAllTotal();
2024-06-17 14:20:48 +08:00
2024-06-13 16:23:37 +08:00
}
}