| | |
| | | * 管理评审报告 前端控制器 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @author |
| | | * @since 2024-11-12 04:44:39 |
| | | */ |
| | | @Api(tags = "管理评审报告") |
| | |
| | | } |
| | | |
| | | @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); |
| | | } |