进度到更新userinfo

This commit is contained in:
2025-07-11 20:59:48 +08:00
parent 6e719f52d4
commit 85d59b2799
7 changed files with 357 additions and 292 deletions
+9 -2
View File
@@ -1,13 +1,20 @@
package routers
type Login_from struct {
type From_user_loggin struct {
Is_keep_login bool `json:"is_keep_login"`
Username string `json:"username"`
Password string `json:"password"`
}
type Add_user_from struct {
type From_user_add struct {
Useremail string `json:"useremail"`
Username string `json:"username"`
Userpass string `json:"userpass"`
}
type From_user_updata_info struct {
Avatar_id uint `json:"avatar_id"`
Username string `json:"username"`
First_name string `json:"first_name"`
Birthday string `json:"birthday"`
}