17 lines
398 B
Go
17 lines
398 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type ChangeCity struct {
|
|
Id int `gorm:"column:id;primaryKey"`
|
|
Time time.Time `gorm:"column:time"`
|
|
CityId int `gorm:"column:city_id"`
|
|
Count int `gorm:"column:count"`
|
|
OffsetOld int `gorm:"column:offset_old"`
|
|
OffsetNew int `gorm:"column:offset_new"`
|
|
}
|
|
|
|
func (ChangeCity) TableName() string {
|
|
return "change_city"
|
|
}
|