From 03565dc21651e0b437b04be7e771d660cb9c8713 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Wed, 31 Jul 2024 14:36:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=BB=B4=E6=BB=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- t3/order.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t3/order.go b/t3/order.go index d0fac7c..69bbf90 100644 --- a/t3/order.go +++ b/t3/order.go @@ -2,7 +2,7 @@ package t3 type T3Order struct { SourceId string `json:"sourceId"` - Amount int `json:"amount"` + Amount float64 `json:"amount"` BusinessId string `json:"businessId"` CpaType string `json:"cpaType"` SpotUuid string `json:"spotUuid"` @@ -10,7 +10,7 @@ type T3Order struct { OrderAmount float64 `json:"orderAmount"` PayAmount float64 `json:"payAmount"` CreateTime int64 `json:"createTime"` - Rate int `json:"rate"` + Rate float64 `json:"rate"` ParticipationStatus int `json:"participationStatus"` FailReason string `json:"failReason"` ActivityUuid string `json:"activityUuid"`