zhuangpei-mesbackend/DOAN.Service/MES/BI/IService/IAndonDataAnalysisService.cs
2025-03-17 11:06:36 +08:00

28 lines
582 B
C#

using DOAN.Model.Dto;
using DOAN.Model.MES.andon.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DOAN.Model.mes.echarts;
namespace DOAN.Service.MES.BI.IService
{
public interface IAndonDataAnalysisService
{
List<AndonFaultRecordDto> QueryTodayAndonFaultRecord();
List<AbnormalDurationRatioResult> AbnormalDurationRatio();
EchartsOptions ShutdownBar();
Dictionary<string,bool> LineRealTimeStatus();
EchartsOptions MonthLineShutDown();
}
}