Add power to login

This commit is contained in:
2023-10-25 18:25:28 +08:00
parent 979d1d8fb8
commit 2a364cfcfe
6 changed files with 119 additions and 11 deletions

View File

@@ -11,4 +11,6 @@ import top.fatweb.api.entity.permission.User
* @author FatttSnake
* @since 2023-10-04
*/
interface IUserService : IService<User>
interface IUserService : IService<User> {
fun getUserWithPower(username: String): User?
}