更新用户退出功能

This commit is contained in:
2025-08-10 02:11:58 +08:00
parent 5be47190c1
commit 4200fc4832
4 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package usermodel
import "time"
type UserData struct {
Uid string
Username string
Password string
Email string
Telephone string
Avatar_url string
Gender string
Bio string
Birth_date time.Time
CreatedAt time.Time
UpdatedAt time.Time
}