TASK: 试用用户添加测试;
This commit is contained in:
@@ -98,4 +98,6 @@ public interface AccountService extends IService<Account> {
|
||||
Boolean trialUserLogout();
|
||||
|
||||
Boolean completeGuidance();
|
||||
|
||||
Boolean addTrialUser(String userName, String email);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user