| | |
| | | if (identity == null && systemUser != null) { |
| | | identityInformationVO.setIdentity(2); |
| | | redisUtils.set("identity:" + loginUserInfo.getPhone(), 2); |
| | | } else if (identity == null && partyMember != null) { |
| | | } else if (identity == null && partyMember != null && partyMember.getAuditStatus() == 1) { |
| | | identityInformationVO.setIdentity(1); |
| | | redisUtils.set("identity:" + loginUserInfo.getPhone(), 1); |
| | | } else if(partyMember == null && systemUser == null && identity != null){ |
| | | } else if((partyMember == null || partyMember.getAuditStatus() !=1) && systemUser == null && identity != null){ |
| | | identityInformationVO.setIdentity(null); |
| | | redisUtils.remove("identity:" + loginUserInfo.getPhone()); |
| | | } else { |