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