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.
back/internal/v2/model/third/recookThirdPartySupplyImg.go

12 lines
277 B

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