Add table t_user_info

This commit is contained in:
2023-10-30 18:39:52 +08:00
parent d4e4ec6cbc
commit c1326f5e7e
11 changed files with 159 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ object UserConverter {
return user
}
fun userToUserInfoVo(user: User) = UserInfoVo(
fun userToUserInfoVo(user: User) = UserWithInfoVo(
id = user.id,
username = user.username,
locking = user.locking?.let { it == 1 },