质量大屏

This commit is contained in:
卢江海
2025-03-27 15:17:23 +08:00
parent df4fc49eab
commit 9c916d58e8
8 changed files with 256 additions and 30 deletions

View File

@@ -0,0 +1,19 @@
using DOAN.Model.MES.order;
using DOAN.Model.MES.quality.FQC;
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<QualitySmartScreenDto> GetQualitySmartScreenForWeek();
List<QualitySmartScreenDto> GetQualitySmartScreenForMonth();
}
}