From c3b1d01968cd571945a8ed4f9b10f9b20ee577b4 Mon Sep 17 00:00:00 2001 From: akun <957746831@qq.com> Date: Thu, 16 May 2024 16:10:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E5=BA=94=E7=94=A8=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../index/controller/ApplyListInfoController.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sf-service/src/main/java/com/sf/service/index/controller/ApplyListInfoController.java b/sf-service/src/main/java/com/sf/service/index/controller/ApplyListInfoController.java index 5490f75..98704fd 100644 --- a/sf-service/src/main/java/com/sf/service/index/controller/ApplyListInfoController.java +++ b/sf-service/src/main/java/com/sf/service/index/controller/ApplyListInfoController.java @@ -38,7 +38,7 @@ public class ApplyListInfoController extends BaseController /** * 查询应用列列表 */ - @PreAuthorize("@ss.hasPermi('index:list:list')") + // @PreAuthorize("@ss.hasPermi('index:list:list')") @GetMapping("/list") public TableDataInfo list(ApplyListInfo applyListInfo) { @@ -50,7 +50,7 @@ public class ApplyListInfoController extends BaseController /** * 导出应用列列表 */ - @PreAuthorize("@ss.hasPermi('index:list:export')") + // @PreAuthorize("@ss.hasPermi('index:list:export')") @Log(title = "应用列", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, ApplyListInfo applyListInfo) @@ -63,7 +63,7 @@ public class ApplyListInfoController extends BaseController /** * 获取应用列详细信息 */ - @PreAuthorize("@ss.hasPermi('index:list:query')") + // @PreAuthorize("@ss.hasPermi('index:list:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { @@ -73,7 +73,7 @@ public class ApplyListInfoController extends BaseController /** * 新增应用列 */ - @PreAuthorize("@ss.hasPermi('index:list:add')") + // @PreAuthorize("@ss.hasPermi('index:list:add')") @Log(title = "应用列", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody ApplyListInfo applyListInfo) @@ -86,7 +86,7 @@ public class ApplyListInfoController extends BaseController /** * 修改应用列 */ - @PreAuthorize("@ss.hasPermi('index:list:edit')") + // @PreAuthorize("@ss.hasPermi('index:list:edit')") @Log(title = "应用列", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody ApplyListInfo applyListInfo) @@ -98,7 +98,7 @@ public class ApplyListInfoController extends BaseController /** * 删除应用列 */ - @PreAuthorize("@ss.hasPermi('index:list:remove')") + // @PreAuthorize("@ss.hasPermi('index:list:remove')") @Log(title = "应用列", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids)