fix: create user form

This commit is contained in:
naiba
2024-12-22 15:51:37 +08:00
parent 75101d860f
commit 1a21abddcf
2 changed files with 5 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package model
type UserForm struct {
Role uint8 `json:"role,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty" gorm:"type:char(72)"`
}