Initial commit

This commit is contained in:
2026-01-28 20:44:34 +08:00
commit 500e8b74a7
236 changed files with 29886 additions and 0 deletions

11
internal/model/admin.go Normal file
View File

@@ -0,0 +1,11 @@
package model
import (
"time"
)
// AdminSession 管理员会话信息 (不再存库,仅用于 JWT 或 API 交互)
type AdminSession struct {
ID uint `json:"id"`
LastLogin *time.Time `json:"last_login"`
}