From 34a716e48e49743083953113bfc2e8011d52444f Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 15 九月 2025 19:08:05 +0800
Subject: [PATCH] 日志修改
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java
index c81ba32..32be1ad 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java
@@ -38,7 +38,7 @@
/**
* 鑾峰彇鍙傛暟閰嶇疆鍒楄〃
*/
- @PreAuthorize("@ss.hasPermi('system:config:list')")
+ // @PreAuthorize("@ss.hasPermi('system:config:list')")
@GetMapping("/list")
public TableDataInfo list(SysConfig config)
{
@@ -48,7 +48,7 @@
}
@Log(title = "鍙傛暟绠$悊", businessType = BusinessType.EXPORT)
- @PreAuthorize("@ss.hasPermi('system:config:export')")
+ // @PreAuthorize("@ss.hasPermi('system:config:export')")
@GetMapping("/export")
public AjaxResult export(SysConfig config)
{
@@ -60,7 +60,7 @@
/**
* 鏍规嵁鍙傛暟缂栧彿鑾峰彇璇︾粏淇℃伅
*/
- @PreAuthorize("@ss.hasPermi('system:config:query')")
+ // @PreAuthorize("@ss.hasPermi('system:config:query')")
@GetMapping(value = "/{configId}")
public AjaxResult getInfo(@PathVariable Long configId)
{
@@ -79,7 +79,7 @@
/**
* 鏂板鍙傛暟閰嶇疆
*/
- @PreAuthorize("@ss.hasPermi('system:config:add')")
+ // @PreAuthorize("@ss.hasPermi('system:config:add')")
@Log(title = "鍙傛暟绠$悊", businessType = BusinessType.INSERT)
@PostMapping
@RepeatSubmit
@@ -96,7 +96,7 @@
/**
* 淇敼鍙傛暟閰嶇疆
*/
- @PreAuthorize("@ss.hasPermi('system:config:edit')")
+ // @PreAuthorize("@ss.hasPermi('system:config:edit')")
@Log(title = "鍙傛暟绠$悊", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
public AjaxResult edit(@Validated @RequestBody SysConfig config)
@@ -112,7 +112,7 @@
/**
* 鍒犻櫎鍙傛暟閰嶇疆
*/
- @PreAuthorize("@ss.hasPermi('system:config:remove')")
+ // @PreAuthorize("@ss.hasPermi('system:config:remove')")
@Log(title = "鍙傛暟绠$悊", businessType = BusinessType.DELETE)
@GetMapping("/remove/{configIds}")
public AjaxResult remove(@PathVariable Long[] configIds)
@@ -124,7 +124,7 @@
/**
* 鍒锋柊鍙傛暟缂撳瓨
*/
- @PreAuthorize("@ss.hasPermi('system:config:remove')")
+ // @PreAuthorize("@ss.hasPermi('system:config:remove')")
@Log(title = "鍙傛暟绠$悊", businessType = BusinessType.CLEAN)
@GetMapping("/refreshCache")
public AjaxResult refreshCache()
--
Gitblit v1.9.3