From 429c7ca241f7c56d3ce20c1619133081a0d23e2e Mon Sep 17 00:00:00 2001 From: timerzz Date: Tue, 3 Sep 2024 14:51:12 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E6=94=B9=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=9C=AA=E5=AF=BC=E5=87=BA=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- structs/v2/provider.go | 2 +- structs/v2/seller.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/structs/v2/provider.go b/structs/v2/provider.go index 381d092..eb52243 100644 --- a/structs/v2/provider.go +++ b/structs/v2/provider.go @@ -11,7 +11,7 @@ const ( // 正在拉取供应商商品信息 ProviderStatus_Pulling // 正在计算价格 - providerStatus_Calculating + ProviderStatus_Calculating // 出错 ProviderStatus_Error ) diff --git a/structs/v2/seller.go b/structs/v2/seller.go index 9740163..7bc3f77 100644 --- a/structs/v2/seller.go +++ b/structs/v2/seller.go @@ -11,7 +11,7 @@ const ( // 正在拉取销售商商品信息 SellerStatus_Pulling // 正在计算 - SellerStatus_Caculating + SellerStatus_Calculating // 出错 SellerStatus_Error )