You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GO/app/model/customerBrowseCar.go

20 lines
358 B

8 months ago
package model
import (
"time"
)
const (
CustomerBrowseCarChannelWxapp = 1 // 微信小程序
)
type CustomerBrowseCar struct {
Id uint `gorm:"primaryKey"`
CarId uint // 车辆id
Car Car `gorm:"CarId"`
CustomerId uint // 客户id
ShareId uint // 分享人
Channel uint // 渠道 1=微信小程序
CreatedAt time.Time
}