us-coach-spider/product/option.go
timerzz 30c2caabaf
Some checks failed
Build image / build (push) Failing after 8s
feat 实现抓取商品信息
2024-05-14 15:27:40 +08:00

10 lines
219 B
Go

package product
import "time"
type Option struct {
Interval time.Duration `yaml:"interval"`
ExchangeRate float64 `yaml:"exchangeRate"` //汇率
Freight float64 `yaml:"freight"` //运费
}