File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/java/com/github/binarywang/wxpay/bean/notify
test/java/com/github/binarywang/wxpay/bean/notify Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ public String toString() {
273
273
* </pre>
274
274
*/
275
275
@ XStreamAlias ("refund_recv_accout" )
276
- private String refundRecvAccout ;
276
+ private String refundRecvAccount ;
277
277
278
278
/**
279
279
* <pre>
@@ -324,7 +324,7 @@ public void loadXML(Document d) {
324
324
settlementRefundFee = readXmlInteger (d , "settlement_refund_fee" );
325
325
refundStatus = readXmlString (d , "refund_status" );
326
326
successTime = readXmlString (d , "success_time" );
327
- refundRecvAccout = readXmlString (d , "refund_recv_accout" );
327
+ refundRecvAccount = readXmlString (d , "refund_recv_accout" );
328
328
refundAccount = readXmlString (d , "refund_account" );
329
329
refundRequestSource = readXmlString (d , "refund_request_source" );
330
330
}
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public void testFromXMLFastMode() throws WxPayException {
119
119
refundNotifyResult .loadReqInfo (xmlDecryptedReqInfo );
120
120
assertEquals (refundNotifyResult .getReqInfo ().getRefundFee ().intValue (), 15 );
121
121
assertEquals (refundNotifyResult .getReqInfo ().getRefundStatus (), "SUCCESS" );
122
- assertEquals (refundNotifyResult .getReqInfo ().getRefundRecvAccout (), "用户零钱" );
122
+ assertEquals (refundNotifyResult .getReqInfo ().getRefundRecvAccount (), "用户零钱" );
123
123
System .out .println (refundNotifyResult );
124
124
} finally {
125
125
XmlConfig .fastMode = false ;
You can’t perform that action at this time.
0 commit comments