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 )