gssong
2024-03-31 343de424ab52d06c058c9da9dd6ae6f5ffc8ffb6
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)));
    }
}