Commit d117e280 by zhangxingmin

push

parent 38064568
...@@ -783,13 +783,15 @@ public class ApiSalaryServiceImpl implements ApiSalaryService { ...@@ -783,13 +783,15 @@ public class ApiSalaryServiceImpl implements ApiSalaryService {
//获取转介人详细详细列表 //获取转介人详细详细列表
List<String> bizIdList = bizIdSet.stream().collect(Collectors.toList()); List<String> bizIdList = bizIdSet.stream().collect(Collectors.toList());
ApiUserSaleExpandListRequest request = new ApiUserSaleExpandListRequest();
request.setClientUserBizIdList(bizIdList);
Result<List<ApiUserSaleExpandDetailResponse>> result = apiUserSaleExpandFeignClient.list(request);
Map<String, ApiUserSaleExpandDetailResponse> policyFollowMap = null; Map<String, ApiUserSaleExpandDetailResponse> policyFollowMap = null;
if (CollectionUtils.isNotEmpty(result.getData())) { if (CollectionUtils.isNotEmpty(bizIdList)) {
policyFollowMap = result.getData().stream() ApiUserSaleExpandListRequest request = new ApiUserSaleExpandListRequest();
.collect(Collectors.toMap(ApiUserSaleExpandDetailResponse::getClientUserBizId, Function.identity())); request.setClientUserBizIdList(bizIdList);
Result<List<ApiUserSaleExpandDetailResponse>> result = apiUserSaleExpandFeignClient.list(request);
if (CollectionUtils.isNotEmpty(result.getData())) {
policyFollowMap = result.getData().stream()
.collect(Collectors.toMap(ApiUserSaleExpandDetailResponse::getClientUserBizId, Function.identity()));
}
} }
// 组装响应对象 // 组装响应对象
List<ApiSalaryBrokerListResponse> resultList = new ArrayList<>(); List<ApiSalaryBrokerListResponse> resultList = new ArrayList<>();
......
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