Dockerfile

This commit is contained in:
2026-03-18 10:18:03 +08:00
parent 5c5dbc7420
commit b65f3439f3
189 changed files with 19027 additions and 0 deletions

12
model/config/physical.go Normal file
View File

@@ -0,0 +1,12 @@
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"` // 配送时效(小时)
}