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
367 B
14 lines
367 B
package manage
|
|
|
|
type RecookThirdPartySupplySpecification struct {
|
|
Id uint `gorm:"column:id"`
|
|
SupplySkuId uint // 供应链skuId
|
|
Name string // 规格名
|
|
Value string // 规格值
|
|
GroupName string // 规格组名
|
|
}
|
|
|
|
func (r *RecookThirdPartySupplySpecification) TableName() string {
|
|
return "recook_third_party_supply_specification"
|
|
}
|