| | |
| | | * 前端控制器 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @author |
| | | * @since 2024-11-11 09:33:47 |
| | | */ |
| | | @Api(tags = "管理评审会议") |
| | |
| | | } |
| | | |
| | | @ApiOperation(value = "编辑会议记录") |
| | | @PutMapping("/modifyMeeting") |
| | | @PostMapping("/modifyMeeting") |
| | | public Result modifyMeeting(@RequestBody ManageMeetingDto manageMeetingDto){ |
| | | return Result.success(manageMeetingService.modifyMeeting(manageMeetingDto)); |
| | | } |
| | |
| | | |
| | | |
| | | @ApiOperation(value = "下载会议记录") |
| | | @PostMapping("/exportMeeting") |
| | | @GetMapping("/exportMeeting") |
| | | public void exportMeeting(Integer id, HttpServletResponse response){ |
| | | manageMeetingService.exportMeeting(id,response); |
| | | } |