BUGFIX: format;
This commit is contained in:
@@ -20,18 +20,23 @@ public interface AccountService extends IService<Account> {
|
||||
|
||||
/**
|
||||
* 账户预先登入
|
||||
*
|
||||
* @param accountDTO
|
||||
* @return
|
||||
*/
|
||||
AccountPreLoginVO preLogin(AccountPreLoginDTO accountDTO);
|
||||
|
||||
/**
|
||||
* 账户登入
|
||||
*
|
||||
* @param accountLoginDTO
|
||||
* @return
|
||||
*/
|
||||
AccountLoginVO login(AccountLoginDTO accountLoginDTO, HttpServletRequest request);
|
||||
|
||||
/**
|
||||
* 绑定邮箱
|
||||
*
|
||||
* @param accountBindEmailDTO
|
||||
* @return
|
||||
*/
|
||||
@@ -39,38 +44,49 @@ public interface AccountService extends IService<Account> {
|
||||
|
||||
/**
|
||||
* 忘记密码
|
||||
*
|
||||
* @param accountDTO
|
||||
* @return
|
||||
*/
|
||||
Boolean forgetPwd(AccountRegisterDTO accountDTO);
|
||||
|
||||
/**
|
||||
* 发送邮件
|
||||
*
|
||||
* @param emailSendDTO
|
||||
* @return
|
||||
*/
|
||||
Boolean sendEmail(EmailSendDTO emailSendDTO);
|
||||
|
||||
/**
|
||||
* 登出
|
||||
*
|
||||
* @param accountLogoutDTO
|
||||
* @return
|
||||
*/
|
||||
Boolean logout(AccountLogoutDTO accountLogoutDTO);
|
||||
|
||||
/**
|
||||
* 判断是否登出 Boolean为登入
|
||||
*
|
||||
* @param accountLogoutDTO
|
||||
* @return
|
||||
*/
|
||||
Boolean isLogin(AccountLogoutDTO accountLogoutDTO);
|
||||
|
||||
/**
|
||||
* 添加用户信息
|
||||
*
|
||||
* @param accountAddDTO
|
||||
* @return
|
||||
*/
|
||||
Boolean addUser(AccountAddDTO accountAddDTO);
|
||||
|
||||
/**
|
||||
* 编辑用户信息
|
||||
*
|
||||
* @param accountEditDTO
|
||||
* @return
|
||||
*/
|
||||
Boolean editUser(AccountEditDTO accountEditDTO) ;
|
||||
Boolean editUser(AccountEditDTO accountEditDTO);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user