This commit is contained in:
chenyanchang
2026-06-17 17:16:32 +08:00
parent 88d6bf8f87
commit 9fe2a3ea8c

View File

@@ -445,6 +445,7 @@ public class SsoService {
private AppUser saveAppUser(JSONObject userJson, String isCompanyUser) { private AppUser saveAppUser(JSONObject userJson, String isCompanyUser) {
JSONObject info = userJson.containsKey("info") ? userJson.getJSONObject("info") : null; JSONObject info = userJson.containsKey("info") ? userJson.getJSONObject("info") : null;
System.out.println("userId===========" + userJson.getLong("userId")); System.out.println("userId===========" + userJson.getLong("userId"));
System.out.println("userJson===========" + JSONObject.toJSONString(userJson));
AppUser appUser = new AppUser(); AppUser appUser = new AppUser();
//app角色0企业1求职者2网格员 3内部政府人员 4其他浪潮用 //app角色0企业1求职者2网格员 3内部政府人员 4其他浪潮用
appUser.setIsCompanyUser(isCompanyUser); appUser.setIsCompanyUser(isCompanyUser);