From 39405c053391f29d2f2c0e2c3104bea111e0e460 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 08 五月 2024 10:25:31 +0800 Subject: [PATCH] 代码提交 --- ruoyi-quartz/src/main/java/com/ruoyi/quartz/controller/SysJobLogController.java | 30 +++++++++++++++--------------- 1 files changed, 15 insertions(+), 15 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 b1f8204..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 @@ -1,13 +1,5 @@ package com.ruoyi.quartz.controller; -import java.util.List; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.access.prepost.PreAuthorize; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; @@ -16,6 +8,14 @@ import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.quartz.domain.SysJobLog; import com.ruoyi.quartz.service.ISysJobLogService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; /** * 璋冨害鏃ュ織鎿嶄綔澶勭悊 @@ -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,9 +68,9 @@ /** * 鍒犻櫎瀹氭椂浠诲姟璋冨害鏃ュ織 */ - @PreAuthorize("@ss.hasPermi('monitor:job:remove')") + // @PreAuthorize("@ss.hasPermi('monitor:job:remove')") @Log(title = "瀹氭椂浠诲姟璋冨害鏃ュ織", businessType = BusinessType.DELETE) - @DeleteMapping("/{jobLogIds}") + @GetMapping("/remove/{jobLogIds}") public AjaxResult remove(@PathVariable Long[] jobLogIds) { return toAjax(jobLogService.deleteJobLogByIds(jobLogIds)); @@ -79,9 +79,9 @@ /** * 娓呯┖瀹氭椂浠诲姟璋冨害鏃ュ織 */ - @PreAuthorize("@ss.hasPermi('monitor:job:remove')") + // @PreAuthorize("@ss.hasPermi('monitor:job:remove')") @Log(title = "璋冨害鏃ュ織", businessType = BusinessType.CLEAN) - @DeleteMapping("/clean") + @GetMapping("/clean") public AjaxResult clean() { jobLogService.cleanJobLog(); -- Gitblit v1.9.3