Files
assets/model/config/physical.go
2026-03-18 10:18:03 +08:00

13 lines
423 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package config
// PhysicalAssetConfig 实物资产配置
type PhysicalAssetConfig struct {
Shipping *ShippingConfig `json:"shipping,omitempty"` // 配送配置
}
// ShippingConfig 配送配置
type ShippingConfig struct {
DeliveryMethod string `json:"deliveryMethod"` // 配送方式express快递/self_pickup自提
//DeliveryTime int `bson:"deliveryTime" json:"deliveryTime"` // 配送时效(小时)
}