From 35ca258311ca0db3c8f95782152d38b1d44dcdf3 Mon Sep 17 00:00:00 2001 From: timerzz Date: Sat, 31 Aug 2024 16:57:46 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E6=B7=BB=E5=8A=A0=E6=AD=A3=E5=9C=A8?= =?UTF-8?q?=E8=AE=A1=E7=AE=97=E4=BB=B7=E6=A0=BC=E7=9A=84=E7=8A=B6=E6=80=81?= 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, 4 insertions(+) diff --git a/structs/v2/provider.go b/structs/v2/provider.go index 84986bb..3bf6395 100644 --- a/structs/v2/provider.go +++ b/structs/v2/provider.go @@ -10,6 +10,8 @@ const ( ProviderStatus_Normal = iota // 正在拉取供应商商品信息 ProviderStatus_Pulling + // 正在计算价格 + providerStatus_Calculating // 出错 ProviderStatus_Error ) diff --git a/structs/v2/seller.go b/structs/v2/seller.go index 4a85105..ab044a3 100644 --- a/structs/v2/seller.go +++ b/structs/v2/seller.go @@ -10,6 +10,8 @@ const ( SellerStatus_Normal = iota // 正在拉取销售商商品信息 SellerStatus_Pulling + // 正在计算 + SellerStatus_Caculating // 出错 SellerStatus_Error )