Commit 12176caf authored by 刘基明's avatar 刘基明

基金详情接口fix

parent 7811671c
......@@ -140,7 +140,7 @@ public class FeignService {
}
public List<ProductInfoVO> getProductInfoByIdsForTopic(List<String> fundIds) {
return batchExecute("getProductInfoByIds_", fundIds, ProductInfoVO.class,
return batchExecute("getProductInfoByIdsForTopic_", fundIds, ProductInfoVO.class,
ProductInfoVO::getFundId, ids -> {
CommonResp<List<ProductInfoVO>> resp = feignForProduct.getProductInfoByIds(ids);
if (resp.isSuccess()) {
......@@ -152,7 +152,7 @@ public class FeignService {
}
public List<ProductInfoVO> getProductInfoByIdsForTheme(List<String> fundIds) {
return batchExecute("getProductInfoByIds_", fundIds, ProductInfoVO.class,
return batchExecute("getProductInfoByIdsForTheme_", fundIds, ProductInfoVO.class,
ProductInfoVO::getFundId, ids -> {
CommonResp<List<ProductInfoVO>> resp = feignForProduct.getProductInfoByIds(ids);
if (resp.isSuccess()) {
......
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