TASK: 试用用户添加测试;

This commit is contained in:
shahaibo
2023-12-06 15:58:57 +08:00
parent be6795b42a
commit 30ff40e84a
4 changed files with 21 additions and 8 deletions

View File

@@ -98,4 +98,6 @@ public interface AccountService extends IService<Account> {
Boolean trialUserLogout();
Boolean completeGuidance();
Boolean addTrialUser(String userName, String email);
}

View File

@@ -451,4 +451,11 @@ public class AccountServiceImpl extends ServiceImpl<AccountMapper, Account> impl
accountMapper.updateById(account);
return Boolean.TRUE;
}
@Override
public Boolean addTrialUser(String userName, String email) {
System.out.println("试用用户测试成功");
log.info("试用用户测试成功");
return Boolean.TRUE;
}
}