package vo // ApiKey OpenAI API 模型 type ApiKey struct { BaseVo Platform string `json:"platform"` Name string `json:"name"` Type string `json:"type"` Value string `json:"value"` // API Key 的值 ApiURL string `json:"api_url"` Enabled bool `json:"enabled"` UseProxy bool `json:"use_proxy"` LastUsedAt int64 `json:"last_used_at"` // 最后使用时间 }