chenrui
2025-03-03 e0b71ec3eac62ec7fa29d2da74bff7712b8ae39d
cnas-manage/src/main/java/com/ruoyi/manage/controller/ManageReviewReportController.java
@@ -44,7 +44,7 @@
    }
    @ApiOperation(value = "编辑管理评审报告")
    @PutMapping("/modifyReviewReport")
    @PostMapping("/modifyReviewReport")
    public Result modifyReviewReport(@RequestBody ManageReviewReport manageReviewReport){
        return Result.success(manageReviewReportService.updateById(manageReviewReport));
    }
@@ -56,7 +56,7 @@
    }
    @ApiOperation(value = "下载管理评审报告")
    @PostMapping("/exportReviewReport")
    @GetMapping("/exportReviewReport")
    public void exportReviewReport(Integer id , HttpServletResponse response){
        manageReviewReportService.exportReviewReport(id,response);
    }