From d8ced63bea3d3e40cbd1c9de37f68f9124bab1c4 Mon Sep 17 00:00:00 2001 From: dingawm Date: Wed, 18 May 2022 16:14:15 +0800 Subject: [PATCH] bug fix --- doc_examples/updateOrderSubInfo/main.go | 2 +- openapi/updateOrderSubInfo.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc_examples/updateOrderSubInfo/main.go b/doc_examples/updateOrderSubInfo/main.go index adeab0a..8f8f2f7 100644 --- a/doc_examples/updateOrderSubInfo/main.go +++ b/doc_examples/updateOrderSubInfo/main.go @@ -26,7 +26,7 @@ func main() { } UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefundVal := openapi.UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefund{ - Amount: "1425", // 文档中对应字段:Amount,实际使用时请替换成真实参数 + Amount: 1425, // 文档中对应字段:Amount,实际使用时请替换成真实参数 Product: []openapi.UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefundProductItem{ UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefundProductItemVal, // 文档中对应字段:Product,实际使用时请替换成真实参数 }, diff --git a/openapi/updateOrderSubInfo.go b/openapi/updateOrderSubInfo.go index 8146f69..12c355a 100644 --- a/openapi/updateOrderSubInfo.go +++ b/openapi/updateOrderSubInfo.go @@ -25,7 +25,7 @@ type UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefundProductItem str Quantity int64 `json:"Quantity"` // 售后商品数量 } type UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefund struct { - Amount string `json:"Amount"` // 退款总金额(单位:分),即100为1元。 + Amount int64 `json:"Amount"` // 退款总金额(单位:分),即100为1元。 Product []UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItemRefundProductItem `json:"Product"` // 售后商品列表 } type UpdateOrderSubInfoRequestDataItemEXTSubsOrderItemsItem struct {