From 211994bd970360cb82d1658a8d6e96b2f1f1176c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Mon, 9 Dec 2019 13:37:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E6=9C=AA=E8=90=A5=E4=B8=9A?= =?UTF-8?q?=E9=97=A8=E5=BA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/jxstore/cms/store.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index 78fcde148..f0268345a 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -135,6 +135,7 @@ type VendorStoreExcel struct { Status string `json:"营业状态"` Tel1 string `json:"电话1"` Tel2 string `json:"电话2"` + CityName string `json:"城市名"` Address string `json:"地址"` } @@ -175,6 +176,7 @@ var ( "营业状态", "电话1", "电话2", + "城市名", "地址", } ) @@ -2331,6 +2333,7 @@ func GetVendorStoreInfo(ctx *jxcontext.Context, vendorIDList []int, isAsync, isC Tel2: storeDetail.Tel2, Address: storeDetail.Address, Status: StoreStatus2Chinese(storeDetail.Status), + CityName: storeDetail.CityName, } retVal = []VendorStoreExcel{storeExcel} }