25 lines
665 B
C#
Raw Normal View History

2025-03-27 15:17:23 +08:00
using DOAN.Model.MES.order;
using DOAN.Model.MES.quality.FQC;
2025-03-27 16:32:17 +08:00
using DOAN.Model.MES.SmartScreen;
2025-03-27 15:17:23 +08:00
using DOAN.Model.MES.SmartScreen.Quality.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.SmartScreen.Quality.IService
{
public interface IQualitySmartService : IBaseService<QcFinishedproductDefectCollection>
{
QualityScreenHeadDto GetQualityScreenHead();
2025-03-27 16:32:17 +08:00
List<EchartsSeriesData> GetQualitySmartScreenForWeek();
List<EchartsSeriesData> GetQualitySmartScreenForMonth();
2025-03-27 18:34:05 +08:00
//barchart EchartsOptions
EchartsOptions GetQualitySmartScreenForBarChart();
2025-03-27 15:17:23 +08:00
}
}