| | |
| | | Integer identity = (Integer) redisUtils.get("identity:" + loginUserInfo.getPhone()); |
| | | List<Integer> permissions = new ArrayList<>(); |
| | | IdentityInformationVO identityInformationVO = new IdentityInformationVO(); |
| | | if (partyMember != null){ |
| | | identityInformationVO.setIsFrozen(partyMember.getFreezeStatus() == 1); |
| | | } |
| | | if (systemUser != null){ |
| | | identityInformationVO.setIsFrozen(systemUser.getStatus() == 2); |
| | | } |
| | | |
| | | identityInformationVO.setIdentity(identity); |
| | | identityInformationVO.setIsPartymember(partyMember != null); |
| | | identityInformationVO.setAuditStatus(partyMember == null ? null : partyMember.getAuditStatus()); |