mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
12 lines
264 B
Go
12 lines
264 B
Go
package model
|
|
|
|
type AdminUser struct {
|
|
BaseModel
|
|
Username string
|
|
Password string
|
|
Salt string // 密码盐
|
|
Status bool `gorm:"default:true"` // 当前状态
|
|
LastLoginAt int64 // 最后登录时间
|
|
LastLoginIp string // 最后登录 IP
|
|
}
|