From 907641e56c2085aaa81f267946dc3e3e9fca73e7 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 18 九月 2024 09:39:02 +0800 Subject: [PATCH] 代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatWildcardController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatWildcardController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatWildcardController.java index 0a8b6d6..97e3c95 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatWildcardController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatWildcardController.java @@ -31,7 +31,7 @@ /** * 鏌ヨ鎮h�呬俊鎭�氶厤绗﹀垪琛� */ - @PreAuthorize("@ss.hasPermi('system:wildcard:list')") + //@PreAuthorize("@ss.hasPermi('system:wildcard:list')") @GetMapping("/list") public TableDataInfo list(PatWildcard patWildcard) { @@ -43,7 +43,7 @@ /** * 瀵煎嚭鎮h�呬俊鎭�氶厤绗﹀垪琛� */ - @PreAuthorize("@ss.hasPermi('system:wildcard:export')") + //@PreAuthorize("@ss.hasPermi('system:wildcard:export')") @Log(title = "鎮h�呬俊鎭�氶厤绗�", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, PatWildcard patWildcard) @@ -56,7 +56,7 @@ /** * 鑾峰彇鎮h�呬俊鎭�氶厤绗﹁缁嗕俊鎭� */ - @PreAuthorize("@ss.hasPermi('system:wildcard:query')") + //@PreAuthorize("@ss.hasPermi('system:wildcard:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { @@ -66,7 +66,7 @@ /** * 鏂板鎮h�呬俊鎭�氶厤绗� */ - @PreAuthorize("@ss.hasPermi('system:wildcard:add')") + //@PreAuthorize("@ss.hasPermi('system:wildcard:add')") @Log(title = "鎮h�呬俊鎭�氶厤绗�", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody PatWildcard patWildcard) @@ -77,7 +77,7 @@ /** * 淇敼鎮h�呬俊鎭�氶厤绗� */ - @PreAuthorize("@ss.hasPermi('system:wildcard:edit')") + //@PreAuthorize("@ss.hasPermi('system:wildcard:edit')") @Log(title = "鎮h�呬俊鎭�氶厤绗�", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody PatWildcard patWildcard) @@ -88,7 +88,7 @@ /** * 鍒犻櫎鎮h�呬俊鎭�氶厤绗� */ - @PreAuthorize("@ss.hasPermi('system:wildcard:remove')") + //@PreAuthorize("@ss.hasPermi('system:wildcard:remove')") @Log(title = "鎮h�呬俊鎭�氶厤绗�", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) -- Gitblit v1.9.3