mirror of
https://github.com/wahyd4/scraper.git
synced 2026-08-09 05:06:22 +10:00
22 lines
327 B
Go
22 lines
327 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
type AuctionResult struct {
|
|
gorm.Model
|
|
ClearanceRate float64
|
|
TotalAuction int
|
|
ConfirmedResult int
|
|
Sold int
|
|
Withdrawn int
|
|
PassedIn int
|
|
TotalSales int
|
|
MedianPrice int
|
|
City string
|
|
AuctionDate time.Time
|
|
}
|