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