| | |
| | | Integer id = (Integer) param.get("id"); |
| | | return Result.success(insReportService.sendBackTask(id)); |
| | | } |
| | | |
| | | /** |
| | | * 报告导出 |
| | | * @param dto |
| | | * @param response |
| | | * @throws Exception |
| | | */ |
| | | @ApiOperation(value = "报告导出") |
| | | @GetMapping("/reportAllExport") |
| | | @PreAuthorize("@ss.hasPermi('business:reportPreparation')") |
| | | @PersonalScope(permsName = "business:reportPreparation", objectName = ReportPageDto.class, paramName = "createOrderUser") |
| | | public void reportAllExport(ReportPageDto dto, HttpServletResponse response) throws Exception { |
| | | insReportService.reportAllExport(dto,response); |
| | | } |
| | | } |