mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-21 02:57:37 +08:00
🐛 修复微信支付分账查询接口返回结果类里的分帐单号字段错误的问题
This commit is contained in:
@@ -36,7 +36,7 @@ public class ProfitSharingQueryResult extends BaseWxPayResult {
|
|||||||
/**
|
/**
|
||||||
* 微信分账单号
|
* 微信分账单号
|
||||||
*/
|
*/
|
||||||
@XStreamAlias("orderId")
|
@XStreamAlias("order_id")
|
||||||
private String orderId;
|
private String orderId;
|
||||||
/**
|
/**
|
||||||
* 分账单状态
|
* 分账单状态
|
||||||
@@ -82,7 +82,7 @@ public class ProfitSharingQueryResult extends BaseWxPayResult {
|
|||||||
protected void loadXML(Document d) {
|
protected void loadXML(Document d) {
|
||||||
transactionId = readXMLString(d, "transaction_id");
|
transactionId = readXMLString(d, "transaction_id");
|
||||||
outOrderNo = readXMLString(d, "out_order_no");
|
outOrderNo = readXMLString(d, "out_order_no");
|
||||||
orderId = readXMLString(d, "orderId");
|
orderId = readXMLString(d, "order_id");
|
||||||
status = readXMLString(d, "status");
|
status = readXMLString(d, "status");
|
||||||
closeReason = readXMLString(d, "close_reason");
|
closeReason = readXMLString(d, "close_reason");
|
||||||
receiversJson = readXMLString(d, "receivers");
|
receiversJson = readXMLString(d, "receivers");
|
||||||
|
Reference in New Issue
Block a user