chore: add description field to user

This commit is contained in:
Steven
2024-03-13 21:24:16 +08:00
parent 7c1510e7a9
commit 8fe6874b1b
9 changed files with 37 additions and 17 deletions

View File

@@ -57,6 +57,7 @@ type User struct {
Nickname string
PasswordHash string
AvatarURL string
Description string
}
type UpdateUser struct {
@@ -71,6 +72,7 @@ type UpdateUser struct {
Password *string
AvatarURL *string
PasswordHash *string
Description *string
}
type FindUser struct {