21 lines
681 B
C#
21 lines
681 B
C#
using Infrastructure.Attribute;
|
|
using SqlSugar;
|
|
using ZR.Model;
|
|
using ZR.Model.MES.DTO;
|
|
using ZR.Model.MES.qc;
|
|
using ZR.Model.MES.qu;
|
|
using ZR.Service.mes.IService;
|
|
using ZR.Service.mes.qc.IService;
|
|
|
|
namespace ZR.Service.mes.qc
|
|
{
|
|
[AppService(ServiceType = typeof(IQualificationRateReportService), ServiceLifetime = LifeTime.Transient)]
|
|
public class QualificationRateReportService : BaseService<QcQualityStatisticsFirst>, IQualificationRateReportService
|
|
{
|
|
public PagedInfo<QualificationRateReportDTO> GetQualificationRateReport(QualificationRateReportQueryDTO parms)
|
|
{
|
|
throw new global::System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|