update 排行榜 筛选 搜索

This commit is contained in:
2023-10-14 18:23:08 +08:00
parent 0c5533ffb3
commit 6211756744
23 changed files with 848 additions and 260 deletions

View File

@@ -160,4 +160,13 @@ public class StringUtil {
}
return false;
}
public static boolean isEmptyAll(String... str) {
for (String s : str) {
if (!isEmpty(s)) {
return false;
}
}
return true;
}
}