|
|
|
@@ -457,7 +457,11 @@ public class InvestBizServiceImpl implements InvestBizService { |
|
|
|
} |
|
|
|
if (CollectionUtils.isNotEmpty(ownerList)) { |
|
|
|
for (Object userId : ownerList) { |
|
|
|
ownerInfo.add(usersMap.get(Long.parseLong((String) userId))); |
|
|
|
if (userId instanceof Long) { |
|
|
|
ownerInfo.add(usersMap.get(userId)); |
|
|
|
} else { |
|
|
|
ownerInfo.add(usersMap.get(Long.parseLong((String) userId))); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return ownerInfo; |
|
|
|
|