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 024d830 commit b8c8d10Copy full SHA for b8c8d10
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result/WxScanPayNotifyResult.java
@@ -0,0 +1,24 @@
1
+package com.github.binarywang.wxpay.bean.result;
2
+
3
+import java.io.Serializable;
4
5
+import com.thoughtworks.xstream.annotations.XStreamAlias;
6
7
+public class WxScanPayNotifyResult extends WxPayBaseResult implements Serializable{
8
+ private static final long serialVersionUID = 3381324564266118986L;
9
10
+ /**
11
+ * 预支付ID
12
+ */
13
+ @XStreamAlias("prepay_id")
14
+ private String prepayId;
15
16
+ public String getPrepayId() {
17
+ return prepayId;
18
+ }
19
20
+ public void setPrepayId(String prepayId) {
21
+ this.prepayId = prepayId;
22
23
24
+}
0 commit comments