From 899f37b1432f8fbeb32ba1507b47a2f65ddea386 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期五, 28 二月 2025 15:44:12 +0800 Subject: [PATCH] app权限修改 --- ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysDictTypeController.java | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysDictTypeController.java b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysDictTypeController.java index 855d191..1c5ab6b 100644 --- a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysDictTypeController.java +++ b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysDictTypeController.java @@ -34,7 +34,6 @@ @Autowired private ISysDictTypeService dictTypeService; - @PreAuthorize("@ss.hasPermi('system:dict:list')") @GetMapping("/list") public TableDataInfo list(SysDictType dictType) { @@ -44,7 +43,6 @@ } // @Log(title = "字典类型", businessType = BusinessType.EXPORT) -// @PreAuthorize("@ss.hasPermi('system:dict:export')") // @PostMapping("/export") // public void export(HttpServletResponse response, SysDictType dictType) // { @@ -56,7 +54,6 @@ /** * 查询字典类型详细 */ - @PreAuthorize("@ss.hasPermi('system:dict:query')") @GetMapping(value = "/{dictId}") public AjaxResult getInfo(@PathVariable Long dictId) { @@ -66,7 +63,6 @@ /** * 新增字典类型 */ - @PreAuthorize("@ss.hasPermi('system:dict:add')") @Log(title = "字典类型", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody SysDictType dict) @@ -82,7 +78,6 @@ /** * 修改字典类型 */ - @PreAuthorize("@ss.hasPermi('system:dict:edit')") @Log(title = "字典类型", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody SysDictType dict) @@ -98,7 +93,6 @@ /** * 删除字典类型 */ - @PreAuthorize("@ss.hasPermi('system:dict:remove')") @Log(title = "字典类型", businessType = BusinessType.DELETE) @DeleteMapping("/{dictIds}") public AjaxResult remove(@PathVariable Long[] dictIds) @@ -110,7 +104,6 @@ /** * 刷新字典缓存 */ - @PreAuthorize("@ss.hasPermi('system:dict:remove')") @Log(title = "字典类型", businessType = BusinessType.CLEAN) @DeleteMapping("/refreshCache") public AjaxResult refreshCache() -- Gitblit v1.7.1