Commit 21c6f6bb authored by 钱坤's avatar 钱坤

修复私募基金获取基金经理时npe问题

parent 85a65969
......@@ -227,8 +227,10 @@ public class ProductPrivateServiceImpl implements ProductPrivateService, Constan
}
FundInfo info = infoMap.get(fundId);
if (info != null) {
vo.setFundName(info.getFundShortName());
vo.setRatioId(ProductEnums.IndexEnum.getValue(info.getPrimaryBenchmarkId()));
}
FundCount fundCount = fundCountMap.get(fundId);
if (fundCount != null) {
vo.setRetIncep(multiply100(fundCount.getRetIncep()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment