| | |
| | | identityInformationVO.setIsFrozen(systemUser.getStatus() == 2); |
| | | } |
| | | |
| | | identityInformationVO.setIdentity(identity); |
| | | if (identity == null && systemUser != null){ |
| | | identityInformationVO.setIdentity(2); |
| | | }else { |
| | | identityInformationVO.setIdentity(identity); |
| | | } |
| | | |
| | | identityInformationVO.setIsPartymember(partyMember != null); |
| | | identityInformationVO.setIsConfirm(partyMember != null && partyMember.getIsConfirm() == 1); |
| | | identityInformationVO.setAuditStatus(partyMember == null ? null : partyMember.getAuditStatus()); |
| | | if (partyMember !=null){ |
| | | permissions.add(1); |
| | |
| | | return R.ok(identityInformationVO); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 切换身份 |
| | | */ |