- package dao
- import (
- "server/global"
- "time"
- )
- type ShortList struct {
- global.GVA_MODEL
- ListType string `json:"list_type" gorm:"comment:名单类型"`
- VehicleId int `json:"vehicle_id" gorm:"comment:车辆ID"`
- Vehicle Vehicle `json:"vehicle" gorm:"foreignKey:VehicleId"`
- ExpirationTime time.Time `json:"expiration_time" gorm:"comment:过期时间"`
- }
|