File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/entpay Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 20
20
@ NoArgsConstructor
21
21
@ XStreamAlias ("xml" )
22
22
public class EntPayRedpackResult extends BaseWxPayResult implements Serializable {
23
+
23
24
private static final long serialVersionUID = 1L ;
24
25
25
26
/**
@@ -54,14 +55,14 @@ public class EntPayRedpackResult extends BaseWxPayResult implements Serializable
54
55
* 付款金额
55
56
* 付款金额,单位分
56
57
*/
57
- @ XStreamAlias ("totalAmount " )
58
+ @ XStreamAlias ("total_amount " )
58
59
private String totalAmount ;
59
60
60
61
/**
61
62
* 微信单号
62
63
* 红包订单的微信单号
63
64
*/
64
- @ XStreamAlias ("sendListid " )
65
+ @ XStreamAlias ("send_listid " )
65
66
private String sendListId ;
66
67
67
68
/**
@@ -84,8 +85,8 @@ protected void loadXml(Document d) {
84
85
mchId = readXmlString (d , "mch_id" );
85
86
wxAppId = readXmlString (d , "wxappid" );
86
87
reOpenid = readXmlString (d , "re_openid" );
87
- totalAmount = readXmlString (d , "totalAmount " );
88
- sendListId = readXmlString (d , "sendListid " );
88
+ totalAmount = readXmlString (d , "total_amount " );
89
+ sendListId = readXmlString (d , "send_listid " );
89
90
senderName = readXmlString (d , "sender_name" );
90
91
senderHeaderMediaId = readXmlString (d , "sender_header_media_id" );
91
92
}
You can’t perform that action at this time.
0 commit comments