Skip to content

Commit 9a6db34

Browse files
authored
🎨 #3577 【微信支付】微信分账回退请求接口新增字段:微信订单号transaction_id
1 parent 77b9062 commit 9a6db34

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/ecommerce/ReturnOrdersRequest.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,18 @@ public class ReturnOrdersRequest implements Serializable {
118118
*/
119119
@SerializedName(value = "description")
120120
private String description;
121+
122+
/**
123+
* <pre>
124+
* 字段名:微信订单号
125+
* 变量名:transaction_id
126+
* 是否必填:否
127+
* 类型:string(32)
128+
* 描述:
129+
* 微信支付订单号,大于6个月的订单,必填
130+
* 示例值:4208450740201411110007820472
131+
* </pre>
132+
*/
133+
@SerializedName(value = "transaction_id")
134+
private String transactionId;
121135
}

0 commit comments

Comments
 (0)