2019-12-08 16:59:58 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type User struct {
|
2020-12-19 23:11:16 +08:00
|
|
|
Common
|
2024-10-20 14:05:43 +08:00
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
Password string `json:"password,omitempty" gorm:"type:char(72)"`
|
2019-12-08 16:59:58 +08:00
|
|
|
}
|