public Account getAccount(String username) {
return accountMapper.getAccountByUsername(username);
}
public Account getAccount(String username, String password) {
Account account = new Account();
account.setUsername(username);
account.setPassword(password);
return accountMapper.getAccountByUsernameAndPassword(account);
}