using iWare.Wms.Core;
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace iWare.Wms.Application
{
///
/// 产线产量统计接口
///
public interface IYieldAnalysisService
{
///
/// 获取产能分析汇总接口
///
///
///
Task> GetYieldAnalysisInfo([FromQuery] AnalysisCommInput input);
}
}