Commit 48f3220c authored by 钱坤's avatar 钱坤

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

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