From 30b0b68b55eec9c3bea0be644c01c8a2a328fdfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Fri, 31 Mar 2023 17:04:53 +0800 Subject: [PATCH] 1' --- business/jxutils/jxutils_cms.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/business/jxutils/jxutils_cms.go b/business/jxutils/jxutils_cms.go index 6605bb5cb..18e2b8b44 100644 --- a/business/jxutils/jxutils_cms.go +++ b/business/jxutils/jxutils_cms.go @@ -495,6 +495,8 @@ func GuessVendorIDFromVendorStoreID(vendorStoreID int64) (vendorID int) { // vendorID = model.VendorIDWSC } else if vendorStoreID > 123456 && vendorStoreID < 654321 { // 京西门店ID,6位 vendorID = model.VendorIDJX + } else if vendorStoreID >= 100000000 { // 饿百出现九未id + vendorID = model.VendorIDEBAI } return vendorID }