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/HeLibraryTagController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryTagController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryTagController.java index 38ece5f..e19e2dd 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryTagController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryTagController.java @@ -39,7 +39,7 @@ /** * 鏌ヨ鎸囨爣鏍囩鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:tag:list')") + //@PreAuthorize("@ss.hasPermi('system:tag:list')") @GetMapping("/list") public TableDataInfo list(HeLibraryTag heLibraryTag) { startPage(); @@ -50,7 +50,7 @@ /** * 瀵煎嚭鎸囨爣鏍囩鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:tag:export')") + //@PreAuthorize("@ss.hasPermi('system:tag:export')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, HeLibraryTag heLibraryTag) { @@ -62,7 +62,7 @@ /** * 鑾峰彇鎸囨爣鏍囩璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:tag:query')") + //@PreAuthorize("@ss.hasPermi('system:tag:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(heLibraryTagService.selectHeLibraryTagById(id)); @@ -71,7 +71,7 @@ /** * 鏂板鎸囨爣鏍囩 */ - @PreAuthorize("@ss.hasPermi('system:tag:add')") + //@PreAuthorize("@ss.hasPermi('system:tag:add')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody HeLibraryTag heLibraryTag) { @@ -81,7 +81,7 @@ /** * 淇敼鎸囨爣鏍囩 */ - @PreAuthorize("@ss.hasPermi('system:tag:edit')") + //@PreAuthorize("@ss.hasPermi('system:tag:edit')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody HeLibraryTag heLibraryTag) { @@ -91,7 +91,7 @@ /** * 鍒犻櫎鎸囨爣鏍囩 */ - @PreAuthorize("@ss.hasPermi('system:tag:remove')") + //@PreAuthorize("@ss.hasPermi('system:tag:remove')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { -- Gitblit v1.9.3