暂降报告修改

This commit is contained in:
hzj
2026-06-09 11:09:19 +08:00
parent ee5526b0f7
commit 48cddd92b0
5 changed files with 64 additions and 32 deletions

View File

@@ -40,6 +40,7 @@ import java.io.IOException;
import java.text.ParseException;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutionException;
/**
* @author xxy
@@ -237,7 +238,7 @@ public class ReportController extends BaseController {
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/createEventReport")
@ApiOperation("暂态事件报告导出")
public void createEventReport(@RequestBody @Validated List<String> index, HttpServletResponse response) throws IOException, InvalidFormatException {
public void createEventReport(@RequestBody @Validated List<String> index, HttpServletResponse response) throws IOException, InvalidFormatException, ExecutionException, InterruptedException {
commMonitorEventReportService.createEventReport(index,response);
}
}