IMonthlyCapacityLoadAppService.cs 560 B

1234567891011121314151617181920212223
  1. using Business.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Volo.Abp.Application.Services;
  8. namespace Business.SaleForecast
  9. {
  10. /// <summary>
  11. /// 产能分析接口
  12. /// </summary>
  13. public interface IMonthlyCapacityLoadAppService: IApplicationService
  14. {
  15. /// <summary>
  16. /// 产能分析
  17. /// </summary>
  18. /// <param name="input"></param>
  19. /// <returns></returns>
  20. Task<string> CapacityAnalysis(InputDto input);
  21. }
  22. }