From 63ebc0007e9958bd6680c6841a7460b053275790 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期一, 22 四月 2024 14:20:15 +0800 Subject: [PATCH] 将 @PreAuthorize 全部注释 --- ruoyi-quartz/src/main/java/com/ruoyi/quartz/controller/SysJobLogController.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ruoyi-quartz/src/main/java/com/ruoyi/quartz/controller/SysJobLogController.java b/ruoyi-quartz/src/main/java/com/ruoyi/quartz/controller/SysJobLogController.java index 2e3181d..c45ebb0 100644 --- a/ruoyi-quartz/src/main/java/com/ruoyi/quartz/controller/SysJobLogController.java +++ b/ruoyi-quartz/src/main/java/com/ruoyi/quartz/controller/SysJobLogController.java @@ -32,7 +32,7 @@ /** * 鏌ヨ瀹氭椂浠诲姟璋冨害鏃ュ織鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('monitor:job:list')") + // @PreAuthorize("@ss.hasPermi('monitor:job:list')") @GetMapping("/list") public TableDataInfo list(SysJobLog sysJobLog) { @@ -44,7 +44,7 @@ /** * 瀵煎嚭瀹氭椂浠诲姟璋冨害鏃ュ織鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('monitor:job:export')") + // @PreAuthorize("@ss.hasPermi('monitor:job:export')") @Log(title = "浠诲姟璋冨害鏃ュ織", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(SysJobLog sysJobLog) @@ -57,7 +57,7 @@ /** * 鏍规嵁璋冨害缂栧彿鑾峰彇璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('monitor:job:query')") + // @PreAuthorize("@ss.hasPermi('monitor:job:query')") @GetMapping(value = "/{configId}") public AjaxResult getInfo(@PathVariable Long jobLogId) { @@ -68,7 +68,7 @@ /** * 鍒犻櫎瀹氭椂浠诲姟璋冨害鏃ュ織 */ - @PreAuthorize("@ss.hasPermi('monitor:job:remove')") + // @PreAuthorize("@ss.hasPermi('monitor:job:remove')") @Log(title = "瀹氭椂浠诲姟璋冨害鏃ュ織", businessType = BusinessType.DELETE) @GetMapping("/remove/{jobLogIds}") public AjaxResult remove(@PathVariable Long[] jobLogIds) @@ -79,7 +79,7 @@ /** * 娓呯┖瀹氭椂浠诲姟璋冨害鏃ュ織 */ - @PreAuthorize("@ss.hasPermi('monitor:job:remove')") + // @PreAuthorize("@ss.hasPermi('monitor:job:remove')") @Log(title = "璋冨害鏃ュ織", businessType = BusinessType.CLEAN) @GetMapping("/clean") public AjaxResult clean() -- Gitblit v1.9.3