diff --git a/business/jxcallback/orderman/orderman_ext.go b/business/jxcallback/orderman/orderman_ext.go index 1db223fbc..2b0ac2c23 100644 --- a/business/jxcallback/orderman/orderman_ext.go +++ b/business/jxcallback/orderman/orderman_ext.go @@ -139,6 +139,11 @@ func (c *OrderManager) GetOrderSkuInfo(ctx *jxcontext.Context, vendorOrderID str %s full_sku_name, t2.name_id, t3.img image, + t3.img2 image2, + t3.img3 image3, + t3.img4 image4, + t3.img5 image5, + t3.descImg, t3.upc FROM order_sku t1 LEFT JOIN goods_order t6 ON t6.vendor_order_id = t1.vendor_order_id AND t6.vendor_id = t1.vendor_id diff --git a/business/model/api.go b/business/model/api.go index a62208e1f..ce5b25814 100644 --- a/business/model/api.go +++ b/business/model/api.go @@ -79,6 +79,11 @@ type OrderSkuExt struct { NameID int `orm:"column(name_id)" json:"nameID"` FullSkuName string `json:"fullSkuName"` Image string `json:"image"` + Img2 string `orm:"size(512)" json:"image2"` // 第二张图片 + Img3 string `orm:"size(512)" json:"image3"` //第三张图片 + Img4 string `orm:"size(512)" json:"image4"` //第三张图片 + Img5 string `orm:"size(512)" json:"image5"` //第三张图片 + DescImg string `orm:"size(255)" json:"descImg"` // 商品详情图片描述 Upc string `json:"upc"` // RealEarningPrice int64 `json:"realEarningPrice"` // 实际单品结算给门店老板钱 }