26 lines
763 B
C#
26 lines
763 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model;
|
|
using DOAN.Model.MES.andon;
|
|
using DOAN.Model.MES.andon.Dto;
|
|
|
|
namespace DOAN.Service.MES.andon.IService
|
|
{
|
|
public interface IAndonDataAnalysisServcie
|
|
{
|
|
PagedInfo<AndonFaultRecordDto> GetList(AndonFaultRecordQueryDto parm);
|
|
List<AndonFaultDict> GetListFault();
|
|
List<AbnormalDurationRatioResult> AbnormalDurationRatio(AndonAnalysisQueryDto query);
|
|
List<AbnormalDurationRatioResult> AbnormalNumDurationRatio(AndonAnalysisQueryDto query);
|
|
|
|
ExceptionDistributionResult ExceptionDistribution(AndonAnalysisQueryDto query);
|
|
|
|
|
|
}
|
|
}
|