18 lines
470 B
C#
18 lines
470 B
C#
|
|
using ZR.Model;
|
|
using ZR.Model.MES.DTO;
|
|
using ZR.Model.MES.wms;
|
|
|
|
namespace ZR.Service.mes.IService
|
|
{
|
|
public interface IQualificationRateReportService : IBaseService<WmMaterial>
|
|
{
|
|
/// <summary>
|
|
/// 分页获取合格率报表
|
|
/// </summary>
|
|
/// <param name="parms"></param>
|
|
/// <returns></returns>
|
|
PagedInfo<QualificationRateReportDTO> GetQualificationRateReport(QualificationRateReportQueryDTO parms);
|
|
}
|
|
}
|