Files
nl-blogs/server/models/access_log.go

16 lines
508 B
Go
Raw Normal View History

2026-01-16 09:32:46 +08:00
package models
2026-01-16 13:01:21 +08:00
// AccessLog 访问日志模型
2026-01-16 09:32:46 +08:00
type AccessLog struct {
2026-01-16 13:01:21 +08:00
ID uint `json:"id" gorm:"primaryKey"`
IP string `json:"ip"`
UserAgent string `json:"user_agent"`
Path string `json:"path"`
Method string `json:"method"`
StatusCode int `json:"status_code"`
ResponseTime int64 `json:"response_time"` // 毫秒
Region string `json:"region"` // IP归属地
CreatedAt int64 `json:"created_at"`
DeletedAt int64 `json:"deleted_at"`
2026-01-16 09:32:46 +08:00
}