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() {
273273 * </pre>
274274 */
275275 @ XStreamAlias ("refund_recv_accout" )
276- private String refundRecvAccout ;
276+ private String refundRecvAccount ;
277277
278278 /**
279279 * <pre>
@@ -324,7 +324,7 @@ public void loadXML(Document d) {
324324 settlementRefundFee = readXmlInteger (d , "settlement_refund_fee" );
325325 refundStatus = readXmlString (d , "refund_status" );
326326 successTime = readXmlString (d , "success_time" );
327- refundRecvAccout = readXmlString (d , "refund_recv_accout" );
327+ refundRecvAccount = readXmlString (d , "refund_recv_accout" );
328328 refundAccount = readXmlString (d , "refund_account" );
329329 refundRequestSource = readXmlString (d , "refund_request_source" );
330330 }
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public void testFromXMLFastMode() throws WxPayException {
119119 refundNotifyResult .loadReqInfo (xmlDecryptedReqInfo );
120120 assertEquals (refundNotifyResult .getReqInfo ().getRefundFee ().intValue (), 15 );
121121 assertEquals (refundNotifyResult .getReqInfo ().getRefundStatus (), "SUCCESS" );
122- assertEquals (refundNotifyResult .getReqInfo ().getRefundRecvAccout (), "用户零钱" );
122+ assertEquals (refundNotifyResult .getReqInfo ().getRefundRecvAccount (), "用户零钱" );
123123 System .out .println (refundNotifyResult );
124124 } finally {
125125 XmlConfig .fastMode = false ;
You can’t perform that action at this time.
0 commit comments