1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-14 20:41:38 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加用户登录(还未验证)

This commit is contained in:
2022-03-13 02:05:29 +08:00
parent 1b78102d61
commit b49e720b3f
11 changed files with 756 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package plus.bookshelf.Service.Service;
import plus.bookshelf.Service.Model.UserModel;
public interface UserService {
/**
* 用户登录
*
* @param username
* @param encryptPwd
*/
UserModel userLogin(String username, String encryptPwd);
}