|
|
@@ -677,9 +677,9 @@ public class PtUserAccountServiceImpl implements IPtUserAccountService {
|
|
|
public List<PtUserAccountVo> getUserAccountVoByDay(Date startDate) {
|
|
|
// 获取指定天数内有更新账户信息的
|
|
|
Date date = new Date();
|
|
|
- // 1.新增的账户
|
|
|
+ // 1.新增的账户 和 修改的
|
|
|
LambdaQueryWrapper<PtUserAccount> between1 = Wrappers.lambdaQuery(PtUserAccount.class)
|
|
|
- .between(PtUserAccount::getCreateTime, startDate, date);
|
|
|
+ .between(PtUserAccount::getCreateTime, startDate, date).or().between(PtUserAccount::getUpdateTime, startDate, date);
|
|
|
// .eq(PtUserAccount::getAccountStatus, UserAccountStatusEnum.IS_OPEN.code());
|
|
|
List<PtUserAccountVo> increaseList = baseMapper.selectVoList(between1);
|
|
|
|