修复不能正确显示昨日负盈利的问题
This commit is contained in:
parent
c39729f949
commit
b5c4542758
@ -133,7 +133,9 @@ public class DepositService {
|
|||||||
.build();
|
.build();
|
||||||
log.info("未能获取到{}首存信息", accountWithChange.getAgentName());
|
log.info("未能获取到{}首存信息", accountWithChange.getAgentName());
|
||||||
CompletableFuture<Void> teamInfoFuture = teamService.getLatestTeamInfoAsync(account, teamInfoReq)
|
CompletableFuture<Void> teamInfoFuture = teamService.getLatestTeamInfoAsync(account, teamInfoReq)
|
||||||
.thenAcceptAsync(team -> accountWithChange.setNowDateDepNum(team.getList().get(0).getFirstDepositNum()), asyncTaskExecutor);
|
.thenAcceptAsync(team -> accountWithChange.setNowDateDepNum(team.getList()
|
||||||
|
.get(0)
|
||||||
|
.getFirstDepositNum()), asyncTaskExecutor);
|
||||||
|
|
||||||
return teamInfoFuture.thenApply(v -> Collections.<ActiveListResp>emptyList());
|
return teamInfoFuture.thenApply(v -> Collections.<ActiveListResp>emptyList());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user