shortlist.go 387 B

1234567891011121314
  1. package dao
  2. import (
  3. "server/global"
  4. "time"
  5. )
  6. type ShortList struct {
  7. global.GVA_MODEL
  8. ListType string `json:"list_type" gorm:"comment:名单类型"`
  9. VehicleId int `json:"vehicle_id" gorm:"comment:车辆ID"`
  10. Vehicle Vehicle `json:"vehicle" gorm:"foreignKey:VehicleId"`
  11. ExpirationTime time.Time `json:"expiration_time" gorm:"comment:过期时间"`
  12. }