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 GetList(AndonFaultRecordQueryDto parm); List GetListFault(); List AbnormalDurationRatio(AndonAnalysisQueryDto query); List AbnormalNumDurationRatio(AndonAnalysisQueryDto query); ExceptionDistributionResult ExceptionDistribution(AndonAnalysisQueryDto query); } }