缺陷报表与合格率报表基础框架搭建

This commit is contained in:
2025-09-09 08:57:59 +08:00
parent 0dfa56bdec
commit 8115615648
9 changed files with 469 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
</ItemGroup>
<ItemGroup>
<Folder Include="mes\qc\defectReport\" />
<Folder Include="mqtt\" />
</ItemGroup>

View File

@@ -0,0 +1,9 @@

namespace ZR.Service.mes.IService
{
public interface IDefectReportService
{
}
}

View File

@@ -0,0 +1,16 @@

using ZR.Model;
using ZR.Model.MES.DTO;
namespace ZR.Service.mes.IService
{
public interface IQualificationRateReportService
{
/// <summary>
/// 分页获取合格率报表
/// </summary>
/// <param name="parms"></param>
/// <returns></returns>
PagedInfo<QualificationRateReportDTO> GetQualificationRateReport(QualificationRateReportQueryDTO parms);
}
}

View File

@@ -0,0 +1,20 @@
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();
}
}
}