fix:订单调整

This commit is contained in:
momo 2023-11-03 11:15:08 +08:00
parent b73ba40b8e
commit 17d35418da

View File

@ -58,6 +58,7 @@ type AmountInfo struct {
Current AmountCurrency `json:"current"` // 当前金额
Initiate AmountCurrency `json:"initiate"` // 初始金额
Metadata map[string]interface{} `json:"metadata"` // 额外明细
IsUpdate int64 `json:"is_update"`
}
// 金额货币
@ -67,6 +68,7 @@ type AmountCurrency struct {
CurrentAmount constants.AmountUnit `json:"current_amount"` // 当前金额
OriginalCurrency string `json:"original_currency"` // 原始货币
OriginalAmount constants.AmountUnit `json:"original_amount"` // 原始金额
IsUpdate int64 `json:"is_update"`
}
// 支付状态
@ -124,6 +126,7 @@ type OrderProduct struct {
type PurchaseQuantity struct {
Current interface{} `json:"current"`
Initiate interface{} `json:"initiate"`
IsUpdate int64 `json:"is_update"`
}
type OrderProductSizeInfo struct {
@ -145,6 +148,7 @@ type OrderProductFittingInfo struct {
type ExpectedDelivery struct {
Current time.Time `json:"current"`
Initiate time.Time `json:"initiate"`
IsUpdate int64 `json:"is_update"`
}
type OrderProductInter struct {