| | |
| | | } |
| | | |
| | | @ApiOperation(value = "编辑管理评审报告") |
| | | @PutMapping("/modifyReviewReport") |
| | | @PostMapping("/modifyReviewReport") |
| | | public Result modifyReviewReport(@RequestBody ManageReviewReport manageReviewReport){ |
| | | return Result.success(manageReviewReportService.updateById(manageReviewReport)); |
| | | } |
| | |
| | | } |
| | | |
| | | @ApiOperation(value = "下载管理评审报告") |
| | | @PostMapping("/exportReviewReport") |
| | | @GetMapping("/exportReviewReport") |
| | | public void exportReviewReport(Integer id , HttpServletResponse response){ |
| | | manageReviewReportService.exportReviewReport(id,response); |
| | | } |