28 lines
582 B
C#
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();
|
|
}
|
|
}
|