From c92df6e57423bfbd71c4b228337d99b7653755bd Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 28 二月 2025 16:31:16 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang --- ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java index 5737466..706ccf2 100644 --- a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java +++ b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysConfigController.java @@ -35,7 +35,6 @@ private ISysConfigService configService; // @Log(title = "参数管理", businessType = BusinessType.EXPORT) -// @PreAuthorize("@ss.hasPermi('system:config:export')") // @PostMapping("/export") // public void export(HttpServletResponse response, SysConfig config) // { @@ -47,7 +46,6 @@ /** * 根据参数编号获取详细信息 */ - @PreAuthorize("@ss.hasPermi('system:config:query')") @GetMapping(value = "/{configId}") public AjaxResult getInfo(@PathVariable Long configId) { @@ -66,7 +64,6 @@ /** * 新增参数配置 */ - @PreAuthorize("@ss.hasPermi('system:config:add')") @Log(title = "参数管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody SysConfig config) @@ -82,7 +79,6 @@ /** * 修改参数配置 */ - @PreAuthorize("@ss.hasPermi('system:config:edit')") @Log(title = "参数管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody SysConfig config) @@ -98,7 +94,6 @@ /** * 删除参数配置 */ - @PreAuthorize("@ss.hasPermi('system:config:remove')") @Log(title = "参数管理", businessType = BusinessType.DELETE) @DeleteMapping("/{configIds}") public AjaxResult remove(@PathVariable Long[] configIds) @@ -110,7 +105,6 @@ /** * 刷新参数缓存 */ - @PreAuthorize("@ss.hasPermi('system:config:remove')") @Log(title = "参数管理", businessType = BusinessType.CLEAN) @DeleteMapping("/refreshCache") public AjaxResult refreshCache() -- Gitblit v1.7.1