using BPA.MES.Base.Application.Services.ReportService.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.MES.Base.Application.Services.ReportService
{
public interface IReportService
{
///
/// 获取产品生产统计
///
///
///
Task> GetProductReport(ProductInputDto input);
///
/// 获取物料统计
///
///
///
Task> GetMaterialsReport(MaterialsInputDto inputDto);
}
}