maven
2025-11-24 3e451c90f8734835743e9cebcf02ce30e577c28d
src/main/java/com/ruoyi/project/system/controller/SysPostController.java
@@ -45,6 +45,20 @@
        List<SysPost> list = postService.selectPostList(post);
        return getDataTable(list);
    }
    /**
     * 获取岗位列表
     */
    @PreAuthorize("@ss.hasPermi('system:post:list')")
    @GetMapping("/listAll")
    public AjaxResult listAll(SysPost post)
    {
        List<SysPost> list = postService.selectPostList(post);
        return AjaxResult.success(list);
    }
    /**
     * 导出岗位列表
     */
    
    @Log(title = "岗位管理", businessType = BusinessType.EXPORT)
    @PreAuthorize("@ss.hasPermi('system:post:export')")