using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 有效分分析处理服务
///
[ApiDescriptionSettings(Name = "esa-processing")]
[Route("esa/processing")]
public class EsaProcessingAppService(IEsaProcessingService esaProcessingService) : IDynamicApiController
{
///
/// 分析处理
///
///
///
[AllowAnonymous]
[DisableOpLog]
public async Task Execute([FromQuery][Required] int esaPlanId)
{
await esaProcessingService.Execute(esaPlanId);
}
}