2024-10-22 21:19:30 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type UserForm struct {
|
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
Password string `json:"password,omitempty" gorm:"type:char(72)"`
|
|
|
|
}
|
2024-11-26 21:30:56 +08:00
|
|
|
|
|
|
|
type ProfileForm struct {
|
|
|
|
OriginalPassword string `json:"original_password,omitempty"`
|
2024-11-30 15:05:46 +08:00
|
|
|
NewUsername string `json:"new_username,omitempty"`
|
2024-11-26 21:30:56 +08:00
|
|
|
NewPassword string `json:"new_password,omitempty"`
|
|
|
|
}
|