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.
17 lines
381 B
17 lines
381 B
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type PopularizeCarBrand struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
BrandId uint // 品牌id
|
|
Brand CarBrand `gorm:"foreignKey:BrandId"`
|
|
Sort uint // 排序
|
|
CreatedUserId uint // 添加人
|
|
CreatedUser Manage `gorm:"foreignKey:CreatedUserId"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|