maven
6 天以前 749418cd02075520e7c2e8afc7a8450db78c82f8
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')")