feat 添加正在计算价格的状态

This commit is contained in:
timerzz 2024-08-31 16:57:46 +08:00
parent 35b6608cc1
commit 35ca258311
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,8 @@ const (
ProviderStatus_Normal = iota
// 正在拉取供应商商品信息
ProviderStatus_Pulling
// 正在计算价格
providerStatus_Calculating
// 出错
ProviderStatus_Error
)

View File

@ -10,6 +10,8 @@ const (
SellerStatus_Normal = iota
// 正在拉取销售商商品信息
SellerStatus_Pulling
// 正在计算
SellerStatus_Caculating
// 出错
SellerStatus_Error
)