using Business.Dto;
using Microsoft.AspNetCore.Mvc;
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);
/////
///// 月度需求分析
/////
/////
/////
//Task DemandAnalysis(InputDto input);
}
}