src/main/kotlin/cn/flightfeather/supervision/lightshare/web/EvaluationController.kt
@@ -70,6 +70,8 @@ @ApiOperation(value = "下载自动评估结果") @PostMapping("/auto/record/download") fun downloadAutoEvaluation(@RequestBody areaVo: AreaVo, @ApiIgnore response: HttpServletResponse) = resPack { evaluationService.downloadAutoEvaluation(areaVo, response) } fun downloadAutoEvaluation( @RequestBody areaVo: AreaVo, @RequestParam forceUpdate: Boolean, @ApiIgnore response: HttpServletResponse, ) = resPack { evaluationService.downloadAutoEvaluation(areaVo, forceUpdate, response) } }