添加给浪潮提供的根据用户userid查询简历

This commit is contained in:
sh
2026-01-11 18:41:15 +08:00
parent 90681d1198
commit ed11350ed4
4 changed files with 73 additions and 5 deletions

View File

@@ -213,4 +213,20 @@ public class StringUtil {
return "***";
}
}
/**
* 转大写
* @param str
* @return
*/
public static String toUpperCaseIgnoreBlank(String str) {
if (str == null) {
return null;
}
String trimmedStr = str.trim();
if (trimmedStr.isEmpty()) {
return str;
}
return str.toUpperCase();
}
}