| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @ApiOperation(httpMethod = "POST", value = "案件台-报案人员-报案材料导出") |
| | | @PostMapping("/exportReporter") |
| | | @ApiResponse(message = "执行成功", code = 200) |
| | | public void exportReport(@RequestParam(value = "id") Integer id, HttpServletResponse response) { |
| | | reportService.exportReporter(id, response); |
| | | } |
| | | // @ApiOperation(httpMethod = "POST", value = "案件台-报案人员-报案材料导出") |
| | | // @PostMapping("/exportReporter") |
| | | // @ApiResponse(message = "执行成功", code = 200) |
| | | // public void exportReport(@RequestParam(value = "id") Integer id, HttpServletResponse response) { |
| | | // reportService.exportReporter(id, response); |
| | | // } |
| | | } |
| | | |