10 lines
219 B
Go
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"` //运费
|
|
}
|