songgaoshuai
2024-04-17 1abd2e7d7e2493481115758b07a9117f164649b4
ruoyi-modules/ruoyi-system/src/main/java/org/dromara/system/controller/system/SysPostController.java
@@ -116,7 +116,7 @@
    @SaCheckPermission("system:post:query")
    @GetMapping("/optionselect")
    public R<List<SysPostVo>> optionselect(@RequestParam(required = false) Long[] postIds) {
        return R.ok(postService.selectPostByIds(List.of(postIds)));
        return R.ok(postService.selectPostByIds(postIds == null ? null : List.of(postIds)));
    }
}