package domain import "time" // Model 模型领域模型 type Model struct { ID string `json:"id"` ProviderID string `json:"provider_id"` ModelName string `json:"model_name"` Enabled bool `json:"enabled"` CreatedAt time.Time `json:"created_at"` }