From 7303e49bd09a63aba8dfde7352c9ed529e3a280e Mon Sep 17 00:00:00 2001 From: timerzz Date: Thu, 27 Mar 2025 10:12:08 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E6=B7=BB=E5=8A=A0NotCrawl=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- structs/v2/provider.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/structs/v2/provider.go b/structs/v2/provider.go index 20c4e76..36866a6 100644 --- a/structs/v2/provider.go +++ b/structs/v2/provider.go @@ -30,8 +30,6 @@ type Provider struct { Status ProviderStatus `json:"status"` // 错误信息 Msg string `json:"msg"` - // 要不要抓取 - NotCrawl bool `json:"notCrawl"` // 拉取时间 PullAt time.Time `json:"pullAt"` // 供应商配置 @@ -43,9 +41,10 @@ type Provider struct { } type ProviderOption struct { - Ticker string `yaml:"ticker" json:"ticker"` //每天几点抓取 + NotCrawl bool `json:"notCrawl"` // 要不要抓取 ExchangeRate float64 `yaml:"exchangeRate" json:"exchangeRate"` //汇率 Freight float64 `yaml:"freight" json:"freight"` //运费 + Ticker string `yaml:"ticker" json:"ticker"` //每天几点抓取 } // ProviderArticle 供应商商品信息