优化oConvertUtils中childArray转换逻辑

pull/7570/merge
JEECG 2025-03-27 19:47:09 +08:00
parent 9579a60abd
commit 0813dee0d4
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ public class oConvertUtils {
return false;
}
String[] childs = childArray.toArray(new String[]{});
List<String> childs = childArray.toJavaList(String.class);
for (String v : childs) {
if (!isIn(v, all)) {
return false;