From c92df6e57423bfbd71c4b228337d99b7653755bd Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 28 二月 2025 16:31:16 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/xiaochen991015/xizang --- ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysPostController.java | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysPostController.java b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysPostController.java index 4d18083..a7a3e13 100644 --- a/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysPostController.java +++ b/ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/SysPostController.java @@ -37,7 +37,6 @@ /** * 获取岗位列表 */ - @PreAuthorize("@ss.hasPermi('system:post:list')") @GetMapping("/list") public TableDataInfo list(SysPost post) { @@ -47,7 +46,6 @@ } // @Log(title = "岗位管理", businessType = BusinessType.EXPORT) -// @PreAuthorize("@ss.hasPermi('system:post:export')") // @PostMapping("/export") // public void export(HttpServletResponse response, SysPost post) // { @@ -59,7 +57,6 @@ /** * 根据岗位编号获取详细信息 */ - @PreAuthorize("@ss.hasPermi('system:post:query')") @GetMapping(value = "/{postId}") public AjaxResult getInfo(@PathVariable Long postId) { @@ -69,7 +66,6 @@ /** * 新增岗位 */ - @PreAuthorize("@ss.hasPermi('system:post:add')") @Log(title = "岗位管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody SysPost post) @@ -89,7 +85,6 @@ /** * 修改岗位 */ - @PreAuthorize("@ss.hasPermi('system:post:edit')") @Log(title = "岗位管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody SysPost post) @@ -109,7 +104,6 @@ /** * 删除岗位 */ - @PreAuthorize("@ss.hasPermi('system:post:remove')") @Log(title = "岗位管理", businessType = BusinessType.DELETE) @DeleteMapping("/{postIds}") public AjaxResult remove(@PathVariable Long[] postIds) -- Gitblit v1.7.1