BUGFIX:问卷调查

This commit is contained in:
shahaibo
2024-07-10 09:49:41 +08:00
parent 54f8d4b5e0
commit 6cbc4882fa

View File

@@ -1234,7 +1234,7 @@ public class AccountServiceImpl extends ServiceImpl<AccountMapper, Account> impl
creditsService.save(creditsDetail);
// 3.3、更新 t_account 表
if (account.getValidEndTime() < 1720972799000L){
if (account.getValidEndTime() != null && account.getValidEndTime() < 1720972799000L){
updateCreditsAndEndTime(account.getId(), added.toString(), 1720972799000L);
}
}