geekai/api/store/model/admin_user.go
2024-03-11 13:51:26 +08:00

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
}