22 lines
688 B
C#
22 lines
688 B
C#
using DOAN.Model.MES.order;
|
|
using DOAN.Model.MES.quality.FQC;
|
|
using DOAN.Model.MES.SmartScreen;
|
|
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();
|
|
List<EchartsSeriesData> GetQualitySmartScreenForWeek();
|
|
List<EchartsSeriesData> GetQualitySmartScreenForMonth();
|
|
EchartsOptions GetQualitySmartScreenForBarChart();
|
|
EchartsOptions GetQualitySmartScreenForLineChart();
|
|
}
|
|
}
|