Commit b0bc0605 authored by 钱坤's avatar 钱坤

移除xml中ifa_imported_fund_nav不存在的字段。

parent 48f3220c
......@@ -24,6 +24,9 @@ public class ProductForPcServiceImpl implements ProductForPcService {
@Override
public List<Net> getFundNewnet(List<String> list) {
if (CollectionUtils.isEmpty(list)) {
return new ArrayList<>();
}
List<FundNav> fundInfoNewNet = fundInfoCustomMapper.getFundInfoNewNet(list);
if (CollectionUtils.isNotEmpty(fundInfoNewNet)) {
return fundInfoNewNet.stream().map(item -> Net.builder()
......
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