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);
|
2024-06-20 13:41:32 +08:00
|
|
|
|
List<AbnormalDurationRatioResult> AbnormalNumDurationRatio(AndonAnalysisQueryDto query);
|
2024-06-20 14:38:04 +08:00
|
|
|
|
|
|
|
|
|
|
ExceptionDistributionResult ExceptionDistribution(AndonAnalysisQueryDto query);
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-20 13:37:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|