mirror of
				https://gitee.com/binary/weixin-java-tools.git
				synced 2025-10-31 10:38:42 +08:00 
			
		
		
		
	增加扫码支付回掉结果Bean
This commit is contained in:
		| @ -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; | ||||||
|  |   } | ||||||
|  |    | ||||||
|  | } | ||||||
		Reference in New Issue
	
	Block a user
	 aimilin6688
					aimilin6688