FloorVisualizer/internal/model/brand.go
dindang 94895cbc22 Initial commit: FloorVisualizer backend
- Go API server with PostgreSQL + Redis
- AI floor replacement (OpenRouter Gemini)
- Product database (10 brands, 3539 products)
- Recommendation engine, calculator, articles
- Redis async queue + worker pool
- Hot product caching, brand view tracking
- JWT auth, favorites, projects
- Docker deployment ready

Co-Authored-By: Claude <noreply@anthropic.com>
2026-07-16 09:47:11 +08:00

10 lines
285 B
Go

package model
// BrandInfo holds enriched brand data returned by /product-options.
type BrandInfo struct {
Name string `json:"name"`
LogoURL string `json:"logo_url"`
StyleCount int `json:"style_count"`
CollectionCount int `json:"collection_count"`
}