nezha/model/user_api.go
2024-12-22 15:51:37 +08:00

14 lines
397 B
Go

package model
type UserForm struct {
Role uint8 `json:"role,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty" gorm:"type:char(72)"`
}
type ProfileForm struct {
OriginalPassword string `json:"original_password,omitempty"`
NewUsername string `json:"new_username,omitempty"`
NewPassword string `json:"new_password,omitempty"`
}