fix:支付
This commit is contained in:
@@ -97,7 +97,7 @@ type OrderStatus struct {
|
||||
type OrderProduct struct {
|
||||
TotalPrice AmountInfo `json:"amount"` // 商品总价
|
||||
ExpectedDeliveryTime *time.Time `json:"expected_delivery_time"` // 预计到货时间
|
||||
PurchaseQuantity int64 `json:"purchase_quantity"` // 购买数量
|
||||
PurchaseQuantity PurchaseQuantity `json:"purchase_quantity"` // 购买数量
|
||||
ProductID int64 `json:"product_id"` // 商品ID
|
||||
ProductName string `json:"product_name"` // 商品名称
|
||||
ItemPrice AmountInfo `json:"product_price"` // 商品单价
|
||||
@@ -112,6 +112,10 @@ type OrderProduct struct {
|
||||
StepNum []int `json:"step_num"` // 阶梯数量
|
||||
IsHighlyCustomized int64 `json:"is_highly_customized"`
|
||||
}
|
||||
type PurchaseQuantity struct {
|
||||
Current interface{} `json:"current"`
|
||||
Initiate interface{} `json:"initiate"`
|
||||
}
|
||||
|
||||
type OrderProductSizeInfo struct {
|
||||
SizeID int64 `json:"size_id"`
|
||||
|
||||
Reference in New Issue
Block a user