1.给浪潮添加岗位申请、录用接口

This commit is contained in:
sh
2025-11-25 14:40:43 +08:00
parent 63dc346ca0
commit a9822c34fe
9 changed files with 86 additions and 7 deletions

View File

@@ -49,6 +49,11 @@ public class StringUtil {
*/
public static final String HIRE_SOURCE_ZPH="1";
/**
* 身份证规则
*/
public static final String SFZ_VALID_REGEX="^[1-9]\\d{5}(18|19|20)\\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\\d{3}[0-9Xx]$";
public static Boolean isEmptyOrNull(String s){
if(Objects.isNull(s)){return true;}
return s.isEmpty();