胖子天骄的MES系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IReportService.cs 783 B

2 months ago
2 months ago
1 year ago
2 months ago
1234567891011121314151617181920212223242526
  1. using BPA.MES.Base.Application.Services.ReportService.Dtos;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.MES.Base.Application.Services.ReportService
  8. {
  9. public interface IReportService
  10. {
  11. /// <summary>
  12. /// 获取产品生产统计
  13. /// </summary>
  14. /// <param name="input"></param>
  15. /// <returns></returns>
  16. Task<SqlSugarPagedList<ProductOutDto>> GetProductReport(ProductInputDto input);
  17. /// <summary>
  18. /// 获取物料统计
  19. /// </summary>
  20. /// <param name="inputDto"></param>
  21. /// <returns></returns>
  22. Task<SqlSugarPagedList<MaterialsOutDto>> GetMaterialsReport(MaterialsInputDto inputDto);
  23. }
  24. }