Skip to content

Commit 5e72fb4

Browse files
authored
Merge pull request #158 from aimilin6688/develop
增加扫码支付回掉结果Bean
2 parents d40309e + b8c8d10 commit 5e72fb4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)