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.

14 lines
366 B

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"
}