From 562a960261b75d70abd65aa10528f09aeece94e8 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 24 九月 2024 09:49:23 +0800 Subject: [PATCH] 代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTargetTagController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTargetTagController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTargetTagController.java index 8a8de25..cc1ee82 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTargetTagController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaTargetTagController.java @@ -30,7 +30,7 @@ /** * 鏌ヨ鎸囨爣鏍囩鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:tag:list')") + //@PreAuthorize("@ss.hasPermi('system:tag:list')") @PostMapping("/list") public TableDataInfo list(@RequestBody IvrLibaTargetTag ivrLibaTargetTag) { startPage(); @@ -41,7 +41,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, IvrLibaTargetTag ivrLibaTargetTag) { @@ -53,7 +53,7 @@ /** * 鑾峰彇鎸囨爣鏍囩璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:tag:query')") + //@PreAuthorize("@ss.hasPermi('system:tag:query')") @GetMapping(value = "/getInfo/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(ivrLibaTargetTagService.selectIvrLibaTargetTagById(id)); @@ -62,7 +62,7 @@ /** * 鏂板鎸囨爣鏍囩 */ - @PreAuthorize("@ss.hasPermi('system:tag:add')") + //@PreAuthorize("@ss.hasPermi('system:tag:add')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.INSERT) @PostMapping("/add") public AjaxResult add(@RequestBody IvrLibaTargetTag ivrLibaTargetTag) { @@ -72,7 +72,7 @@ /** * 淇敼鎸囨爣鏍囩 */ - @PreAuthorize("@ss.hasPermi('system:tag:edit')") + //@PreAuthorize("@ss.hasPermi('system:tag:edit')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.UPDATE) @PostMapping("/edit") public AjaxResult edit(@RequestBody IvrLibaTargetTag ivrLibaTargetTag) { @@ -82,7 +82,7 @@ /** * 鍒犻櫎鎸囨爣鏍囩 */ - @PreAuthorize("@ss.hasPermi('system:tag:remove')") + //@PreAuthorize("@ss.hasPermi('system:tag:remove')") @Log(title = "鎸囨爣鏍囩", businessType = BusinessType.DELETE) @GetMapping("/remove/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { -- Gitblit v1.9.3