yys
maven
2025-11-18 ed3d89b8cb8f35492cd363e8586c49ae3d3f93f9
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')")