1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-21 22:56:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加账号注销功能

This commit is contained in:
2022-04-05 17:23:06 +08:00
parent 364566d6c1
commit 8598edc0f7
7 changed files with 186 additions and 2 deletions

View File

@@ -38,4 +38,13 @@ public interface UserService {
* @return 注册成功返回true否则返回false
*/
Boolean userRegister(String username, String encryptPwd) throws BusinessException;
/**
* 账号注销
*
* @param userModel
* @return
* @throws BusinessException
*/
Boolean cancelAccount(UserModel userModel) throws BusinessException;
}