mirror of
https://github.com/wahyd4/scraper.git
synced 2026-08-09 05:06:22 +10:00
23 lines
333 B
Go
23 lines
333 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
type House struct {
|
|
gorm.Model
|
|
Suburb string
|
|
URL string
|
|
Address string
|
|
HouseType string
|
|
BedNumber int
|
|
SoldStatus string
|
|
Price int
|
|
Agent string
|
|
PriceWithheld bool
|
|
ActionDate time.Time
|
|
City string
|
|
}
|