using Business.Dto; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace Business.SaleForecast { /// /// 产能分析接口 /// public interface IMonthlyCapacityLoadAppService: IApplicationService { /// /// 产能分析 /// /// /// Task CapacityAnalysis(InputDto input); } }