fix:订单调整
This commit is contained in:
parent
b73ba40b8e
commit
17d35418da
@ -58,6 +58,7 @@ type AmountInfo struct {
|
|||||||
Current AmountCurrency `json:"current"` // 当前金额
|
Current AmountCurrency `json:"current"` // 当前金额
|
||||||
Initiate AmountCurrency `json:"initiate"` // 初始金额
|
Initiate AmountCurrency `json:"initiate"` // 初始金额
|
||||||
Metadata map[string]interface{} `json:"metadata"` // 额外明细
|
Metadata map[string]interface{} `json:"metadata"` // 额外明细
|
||||||
|
IsUpdate int64 `json:"is_update"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// 金额货币
|
// 金额货币
|
||||||
@ -67,6 +68,7 @@ type AmountCurrency struct {
|
|||||||
CurrentAmount constants.AmountUnit `json:"current_amount"` // 当前金额
|
CurrentAmount constants.AmountUnit `json:"current_amount"` // 当前金额
|
||||||
OriginalCurrency string `json:"original_currency"` // 原始货币
|
OriginalCurrency string `json:"original_currency"` // 原始货币
|
||||||
OriginalAmount constants.AmountUnit `json:"original_amount"` // 原始金额
|
OriginalAmount constants.AmountUnit `json:"original_amount"` // 原始金额
|
||||||
|
IsUpdate int64 `json:"is_update"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// 支付状态
|
// 支付状态
|
||||||
@ -124,6 +126,7 @@ type OrderProduct struct {
|
|||||||
type PurchaseQuantity struct {
|
type PurchaseQuantity struct {
|
||||||
Current interface{} `json:"current"`
|
Current interface{} `json:"current"`
|
||||||
Initiate interface{} `json:"initiate"`
|
Initiate interface{} `json:"initiate"`
|
||||||
|
IsUpdate int64 `json:"is_update"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type OrderProductSizeInfo struct {
|
type OrderProductSizeInfo struct {
|
||||||
@ -145,6 +148,7 @@ type OrderProductFittingInfo struct {
|
|||||||
type ExpectedDelivery struct {
|
type ExpectedDelivery struct {
|
||||||
Current time.Time `json:"current"`
|
Current time.Time `json:"current"`
|
||||||
Initiate time.Time `json:"initiate"`
|
Initiate time.Time `json:"initiate"`
|
||||||
|
IsUpdate int64 `json:"is_update"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type OrderProductInter struct {
|
type OrderProductInter struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user