File size: 451 Bytes
f1dd159 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | package admin
import "time"
// Admin 表示系统唯一管理员。
type Admin struct {
ID uint64
Username string
PasswordHash string
CreatedAt time.Time
UpdatedAt time.Time
}
// Session 表示可轮换和删除的管理员刷新会话。
type Session struct {
ID uint64
AdminID uint64
RefreshTokenHash string
ExpiresAt time.Time
LastUsedAt *time.Time
CreatedAt time.Time
}
|