From b8c8d105796a39e62fe671d24c23acebf8dfd020 Mon Sep 17 00:00:00 2001 From: aimilin6688 Date: Tue, 14 Mar 2017 11:53:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=89=AB=E7=A0=81=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E5=9B=9E=E6=8E=89=E7=BB=93=E6=9E=9CBean?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bean/result/WxScanPayNotifyResult.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result/WxScanPayNotifyResult.java diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result/WxScanPayNotifyResult.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result/WxScanPayNotifyResult.java new file mode 100644 index 00000000..5bf11068 --- /dev/null +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/result/WxScanPayNotifyResult.java @@ -0,0 +1,24 @@ +package com.github.binarywang.wxpay.bean.result; + +import java.io.Serializable; + +import com.thoughtworks.xstream.annotations.XStreamAlias; + +public class WxScanPayNotifyResult extends WxPayBaseResult implements Serializable{ + private static final long serialVersionUID = 3381324564266118986L; + + /** + * 预支付ID + */ + @XStreamAlias("prepay_id") + private String prepayId; + + public String getPrepayId() { + return prepayId; + } + + public void setPrepayId(String prepayId) { + this.prepayId = prepayId; + } + +}