35 lines
854 B
Go
35 lines
854 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type WeekdayRow struct {
|
|
DOW int `gorm:"column:dow"`
|
|
Count int `gorm:"column:count"`
|
|
}
|
|
|
|
type DayRow struct {
|
|
Day time.Time `gorm:"column:day"`
|
|
Count int `gorm:"column:count"`
|
|
}
|
|
|
|
type ProductRow struct {
|
|
ProductID int `gorm:"column:product_id"`
|
|
Name string `gorm:"column:name"`
|
|
Quantity float64 `gorm:"column:total_quantity"`
|
|
OrderCount int `gorm:"column:order_count"`
|
|
Revenue float64 `gorm:"column:revenue"`
|
|
Category string `gorm:"column:category"`
|
|
CategoryColor string `gorm:"column:category_color"`
|
|
}
|
|
|
|
type HourRow struct {
|
|
Hour int `gorm:"column:hour"`
|
|
Count int `gorm:"column:count"`
|
|
Revenue float64 `gorm:"column:revenue"`
|
|
}
|
|
|
|
type DayRevenueRow struct {
|
|
Day time.Time `gorm:"column:day"`
|
|
Revenue float64 `gorm:"column:revenue"`
|
|
}
|