File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/profitsharing Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,24 @@ public class ProfitSharingResult extends BaseWxPayResult implements Serializable
36
36
@ XStreamAlias ("order_id" )
37
37
private String orderId ;
38
38
39
+ /**
40
+ * 分账单状态.
41
+ */
42
+ @ XStreamAlias ("status" )
43
+ private String status ;
44
+
45
+ /**
46
+ * 分账接收方列表.
47
+ */
48
+ @ XStreamAlias ("receivers" )
49
+ private String receivers ;
50
+
39
51
@ Override
40
52
protected void loadXml (Document d ) {
41
53
transactionId = readXmlString (d , "transaction_id" );
42
54
outOrderNo = readXmlString (d , "out_order_no" );
43
55
orderId = readXmlString (d , "order_id" );
56
+ status = readXmlString (d , "status" );
57
+ receivers = readXmlString (d , "receivers" );
44
58
}
45
59
}
You can’t perform that action at this time.
0 commit comments