Add GetUserInfo

This commit is contained in:
2023-10-27 18:20:15 +08:00
parent 7aa2212976
commit 11ceb410c8
13 changed files with 181 additions and 7 deletions

View File

@@ -14,5 +14,5 @@ import top.fatweb.api.entity.permission.User
interface IUserService : IService<User> {
fun getUserWithPower(username: String): User?
fun getInfo(): User
fun getInfo(): User?
}