zhuangpei-mesbackend/DOAN.Service/MES/andon/IService/IAndonDataAnalysisServcie.cs

26 lines
763 B
C#
Raw Normal View History

2024-06-20 13:37:46 +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.Dto;
using DOAN.Model;
using DOAN.Model.MES.andon;
using DOAN.Model.MES.andon.Dto;
2024-06-20 13:37:46 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.MES.andon.IService
2024-06-20 13:37:46 +08:00
{
public interface IAndonDataAnalysisServcie
{
2024-06-21 17:12:20 +08:00
PagedInfo<AndonFaultRecordDto> GetList(AndonFaultRecordQueryDto parm);
2024-06-20 13:37:46 +08:00
List<AndonFaultDict> GetListFault();
List<AbnormalDurationRatioResult> AbnormalDurationRatio(AndonAnalysisQueryDto query);
List<AbnormalDurationRatioResult> AbnormalNumDurationRatio(AndonAnalysisQueryDto query);
ExceptionDistributionResult ExceptionDistribution(AndonAnalysisQueryDto query);
2024-06-20 13:37:46 +08:00
}
}