|
@@ -204,6 +204,7 @@ public class AccountApiController extends AbstractApiController {
|
|
|
List<AccountFlow> distinctFlows = flows.stream()
|
|
List<AccountFlow> distinctFlows = flows.stream()
|
|
|
.collect(Collectors.toMap(AccountFlow::getId, Function.identity(), (existing, replacement) -> existing))
|
|
.collect(Collectors.toMap(AccountFlow::getId, Function.identity(), (existing, replacement) -> existing))
|
|
|
.values().stream()
|
|
.values().stream()
|
|
|
|
|
+ .sorted((af1, af2) -> af2.getCreateTime().compareTo(af1.getCreateTime()))
|
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
|
PageInfo pageInfo = new PageInfo(distinctFlows);
|
|
PageInfo pageInfo = new PageInfo(distinctFlows);
|
|
|
List<AccountFlowBO> bos = distinctFlows.stream().map(temp -> {
|
|
List<AccountFlowBO> bos = distinctFlows.stream().map(temp -> {
|