添加企业收藏求职者

This commit is contained in:
chenshaohua
2026-07-12 13:13:07 +08:00
parent 45842d94b7
commit cb38c9abd9
10 changed files with 498 additions and 1 deletions

View File

@@ -218,4 +218,19 @@ public class SecurityUtils
throw new ServiceException("获取用户ID异常", HttpStatus.UNAUTHORIZED);
}
}
/**
* 获取企业社会信用代码
* @return
*/
public static String getIdcard(){
try
{
return getLoginUser().getUser().getIdCard();
}
catch (Exception e)
{
throw new ServiceException("获取用户ID异常", HttpStatus.UNAUTHORIZED);
}
}
}