|
@@ -63,8 +63,8 @@ public class FundInformationServiceImpl implements FundInformationService {
|
|
|
@Override
|
|
|
public Map<String, String> getFundIdNameByFundIdList(List<String> fundIdList) {
|
|
|
Map<String, String> map = new HashMap<>();
|
|
|
- List<FundInformationDO> result = fundInfoMapper.searchFundInfoListByFundIdList(fundIdList);
|
|
|
- for (FundInformationDO fundInformationDO : result) {
|
|
|
+ List<FundInfoDO> result = fundInfoMapper.searchFundInfoListByFundIdList(fundIdList);
|
|
|
+ for (FundInfoDO fundInformationDO : result) {
|
|
|
map.put(fundInformationDO.getFundId(), fundInformationDO.getFundShortName());
|
|
|
}
|
|
|
return map;
|