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 manage
|
|
|
|
type RecookThirdPartySupplyImg struct {
|
|
Id uint `gorm:"column:id"`
|
|
SupplySkuId uint // 供应链skuId
|
|
Path string // 图片地址路径
|
|
}
|
|
|
|
func (r *RecookThirdPartySupplyImg) TableName() string {
|
|
return "recook_third_party_supply_img"
|
|
}
|