From e7200a1bfc5abf3dac04955dfa533476f535a5ea Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期一, 14 七月 2025 14:18:08 +0800 Subject: [PATCH] zjh20250714 --- ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java b/ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java index df62e96..91354db 100644 --- a/ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java +++ b/ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java @@ -37,7 +37,7 @@ /** * 鏌ヨ鍏抽敭瀛楀垪琛� */ - @PreAuthorize("@ss.hasPermi('mall:keyword:list')") +// @PreAuthorize("@ss.hasPermi('mall:keyword:list')") @GetMapping("/list") public TableDataInfo list(MallKeyword mallKeyword) { startPage(); @@ -48,7 +48,7 @@ /** * 瀵煎嚭鍏抽敭瀛楀垪琛� */ - @PreAuthorize("@ss.hasPermi('mall:keyword:export')") +// @PreAuthorize("@ss.hasPermi('mall:keyword:export')") @Log(title = "鍏抽敭瀛�", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, MallKeyword mallKeyword) { @@ -60,7 +60,7 @@ /** * 鑾峰彇鍏抽敭瀛楄缁嗕俊鎭� */ - @PreAuthorize("@ss.hasPermi('mall:keyword:query')") +// @PreAuthorize("@ss.hasPermi('mall:keyword:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(mallKeywordService.selectMallKeywordById(id)); @@ -69,7 +69,7 @@ /** * 鏂板鍏抽敭瀛� */ - @PreAuthorize("@ss.hasPermi('mall:keyword:add')") +// @PreAuthorize("@ss.hasPermi('mall:keyword:add')") @Log(title = "鍏抽敭瀛�", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody MallKeyword mallKeyword) { @@ -79,7 +79,7 @@ /** * 淇敼鍏抽敭瀛� */ - @PreAuthorize("@ss.hasPermi('mall:keyword:edit')") +// @PreAuthorize("@ss.hasPermi('mall:keyword:edit')") @Log(title = "鍏抽敭瀛�", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody MallKeyword mallKeyword) { @@ -89,7 +89,7 @@ /** * 鍒犻櫎鍏抽敭瀛� */ - @PreAuthorize("@ss.hasPermi('mall:keyword:remove')") +// @PreAuthorize("@ss.hasPermi('mall:keyword:remove')") @Log(title = "鍏抽敭瀛�", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { -- Gitblit v1.8.0