mitao
2024-12-27 9c717849bee3d6cc25f29ad69a93a507e3de7d13
medicalWaste-admin/src/main/java/com/sinata/web/controller/backend/StaticsController.java
@@ -134,9 +134,30 @@
        }
    }
    /**
     * 监管报表
     *
     * @param query
     * @return
     */
    @ApiOperation("监管报表")
    @PostMapping("/regulationReport")
    public R<DepartmentReportVO> regulationReport(@Valid @RequestBody DisposalReportQuery query) {
        return R.ok(staticsService.regulationReport(query));
    }
    /**
     * 监管报表导出
     *
     * @param query
     */
    @ApiOperation("监管报表导出")
    @PostMapping("/regulationReportExport")
    public void regulationReportExport(@Valid @RequestBody DisposalReportQuery query) {
        try {
            staticsService.regulationReportExport(query);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }
}