fuliqi
2024-11-18 dbf1793b62b69f824a401242cfd5430dd4992fa8
ycl-server/src/main/java/com/ycl/platform/controller/TMonitorController.java
@@ -142,6 +142,14 @@
    {
        return success(tMonitorService.recoveryException(monitor));
    }
    /**
     * 导出
     */
    @PreAuthorize("@ss.hasPermi('system:monitor:export')")
    @Log(title = "导出", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response,TMonitorVO tMonitor) throws IOException, NoSuchFieldException, IllegalAccessException {
        tMonitorService.export(response,tMonitor);
    }
}