缺陷报表与合格率报表基础框架搭建
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="mes\qc\defectReport\" />
|
||||
<Folder Include="mqtt\" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
namespace ZR.Service.mes.IService
|
||||
{
|
||||
public interface IDefectReportService
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user