17 lines
419 B
C#
17 lines
419 B
C#
|
|
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);
|
|
}
|
|
}
|