From 998fe1b733d405f3131d440581b781be397942e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 6 Feb 2025 17:52:39 +0800 Subject: [PATCH] 1 --- business/jxcallback/orderman/orderman_ext.go | 2 +- business/model/api.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxcallback/orderman/orderman_ext.go b/business/jxcallback/orderman/orderman_ext.go index f154e4a1e..1d9908a42 100644 --- a/business/jxcallback/orderman/orderman_ext.go +++ b/business/jxcallback/orderman/orderman_ext.go @@ -144,7 +144,7 @@ func (c *OrderManager) GetOrderSkuInfo(ctx *jxcontext.Context, vendorOrderID str t3.img4 image4, t3.img5 image5, t3.desc_img descImg, - t3.price mainPrice, + t3.price price, 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 d62685ceb..940ded83f 100644 --- a/business/model/api.go +++ b/business/model/api.go @@ -85,7 +85,7 @@ type OrderSkuExt struct { Img5 string `orm:"size(512)" json:"image5"` //第三张图片 DescImg string `orm:"size(255)" json:"descImg"` // 商品详情图片描述 Upc string `json:"upc"` // - MainPrice int64 `json:"mainPrice"` // 商品库价格 + Price int64 `json:"price"` // 商品库价格 // RealEarningPrice int64 `json:"realEarningPrice"` // 实际单品结算给门店老板钱 }