根据企业code查询企业联系人

This commit is contained in:
chenshaohua
2026-07-20 20:03:20 +08:00
parent 58228e8cd3
commit 2d933930ae
3 changed files with 55 additions and 1 deletions

View File

@@ -135,4 +135,19 @@ public class SiteSecurityUtils
throw new ServiceException("获取用户ID异常", HttpStatus.UNAUTHORIZED);
}
}
/**
* 获取idcard
* @return
*/
public static String getIdCard(){
try
{
return getLoginSiteUser().getUser().getIdCard();
}
catch (Exception e)
{
throw new ServiceException("获取用户ID异常", HttpStatus.UNAUTHORIZED);
}
}
}