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))); } }