mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-07-18 22:35:48 +08:00
commit
5e72fb4705
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user