Commit 00dd1533 authored by shiyu's avatar shiyu

平台账单

parent 9e23db2b
......@@ -325,12 +325,13 @@ public class SysFinanceServiceImpl implements SysFinanceService {
currentQueryDto.setStartCreateTime(dto.getStartCreateTime());
currentQueryDto.setEndCreateTime(dto.getEndCreateTime());
currentQueryDto.setState(BillEnum.AccountDetailStateEnum.WAIT_ENTRY.getCode());
currentQueryDto.setUserId(CommConsts.SYSTEM_ACCOUNT);
//待入账金额
long waitEntryAmount = userAccountDetailDao.summaryAmount(dto);
long waitEntryAmount = userAccountDetailDao.summaryAmount(currentQueryDto);
currentQueryDto.setState(BillEnum.AccountDetailStateEnum.ENTRY.getCode());
//入账金额
long entryAmount = userAccountDetailDao.summaryAmount(dto);
long entryAmount = userAccountDetailDao.summaryAmount(currentQueryDto);
//查询平台历史收入
UserAccountDetailRequestDto queryDto = new UserAccountDetailRequestDto();
......
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