|
@@ -1387,7 +1387,7 @@ public class FundAccountDetailServiceImpl extends ServiceImpl<FundAccountDetailM
|
|
|
.orderByDesc(BasicsEntity::getCreateTime)
|
|
|
);
|
|
|
|
|
|
- Map<String, Map<String, Map<Integer, Map<Integer, BigDecimal>>>> collect = list.stream().collect(Collectors.groupingBy(
|
|
|
+ return list.stream().collect(Collectors.groupingBy(
|
|
|
// 账号id分组
|
|
|
FundAccountDetail::getFromFundAccountId,
|
|
|
Collectors.groupingBy(
|
|
@@ -1408,8 +1408,6 @@ public class FundAccountDetailServiceImpl extends ServiceImpl<FundAccountDetailM
|
|
|
)
|
|
|
));
|
|
|
|
|
|
- return collect;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
}
|