namespace YBEE.EQM.Application; /// /// TQES报表服务 /// [ApiDescriptionSettings(Name = "exam-reporting-tqes")] [Route("exam/reporting/tqes")] public class ExamReportingTqesAppService(IExamReportingTqesService examReportingTqesService) : IDynamicApiController { /// /// 根据监测计划ID导出全区优势薄弱 /// /// /// [AllowAnonymous] public async Task ExportTotalAdvWeak([FromQuery][Required] int examPlanId) { var (fileName, fileBytes) = await examReportingTqesService.ExportTotalAdvWeak(examPlanId); return new FileContentResult(fileBytes, "application/octet-stream") { FileDownloadName = fileName, }; } }