| | |
| | | if (list != null && list.size() > 0) { |
| | | Map<Long, UserInfo> userInfoMap = userInfoService.listUserInfoAsMap(UserInfoUtil.getBaseUserList(list)); |
| | | for (ActivityJoinerRankInfo info : list) { |
| | | UserInfo user = userInfoMap.get(info.getUid()); |
| | | UserInfo user = userInfoMap.get(Long.parseLong(info.getUid())); |
| | | |
| | | if (user != null) { |
| | | if (user.getId().longValue() == acceptData.getUid()) { |
| | | continue; |
| | | } |
| | | voList.add(new ActivityJoinerRankInfoVO(new SimpleUser(user.getId(), user.getNickName(), user.getPortrait()), info.getRank(), info.getWeight())); |
| | | } |
| | | } |