package domain import "time" // UsageStats 用量统计领域模型 type UsageStats struct { ID uint `json:"id"` ProviderID string `json:"provider_id"` ModelName string `json:"model_name"` RequestCount int `json:"request_count"` Date time.Time `json:"date"` }