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.
|
package model
|
|
|
|
type OrderConsignmentCarPhoto struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
OrderId uint // 订单id
|
|
Path string // 图片地址
|
|
Text string // 图片描述
|
|
Type uint // 车辆类型 1=车辆照片 2=内饰照片 3=缺陷照片 4=资料照片 5=报告照片
|
|
}
|