We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4c18d7 commit 8c787d1Copy full SHA for 8c787d1
1 file changed
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharing/ProfitSharingResult.java
@@ -36,10 +36,24 @@ public class ProfitSharingResult extends BaseWxPayResult implements Serializable
36
@XStreamAlias("order_id")
37
private String orderId;
38
39
+ /**
40
+ * 分账单状态.
41
+ */
42
+ @XStreamAlias("status")
43
+ private String status;
44
+
45
46
+ * 分账接收方列表.
47
48
+ @XStreamAlias("receivers")
49
+ private String receivers;
50
51
@Override
52
protected void loadXml(Document d) {
53
transactionId = readXmlString(d, "transaction_id");
54
outOrderNo = readXmlString(d, "out_order_no");
55
orderId = readXmlString(d, "order_id");
56
+ status = readXmlString(d, "status");
57
+ receivers = readXmlString(d, "receivers");
58
}
59
0 commit comments