From 67737ceccde2f41e7947e176ac285f0dc38d516b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 19 Dec 2024 13:55:12 +0800 Subject: [PATCH] 1 --- business/jxcallback/orderman/orderman_ext.go | 5 +++++ business/model/api.go | 5 +++++ 2 files changed, 10 insertions(+) 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"` // 实际单品结算给门店老板钱 }