修复不能正确显示昨日负盈利的问题

This commit is contained in:
zayac 2024-07-02 00:38:07 +08:00
parent c39729f949
commit b5c4542758

View File

@ -133,7 +133,9 @@ public class DepositService {
.build();
log.info("未能获取到{}首存信息", accountWithChange.getAgentName());
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());
}