package model import "bkb-seller/global" type TbAttributeValue struct { //规格属性取值 AttributeId uint `gorm:"type:int(11);not null;" json:"attribute_id"` //attribute_id Name string `gorm:"type:varchar(255);not null;" json:"name"` //属性取值 global.MG_MODEL } func (TbAttributeValue) TableName() string { return "tb_attribute_value" }