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