You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							40 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							40 lines
						
					
					
						
							1.1 KiB
						
					
					
				| package com.ynxbd.wx.wxfactory.bean;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.math.BigDecimal;
 | |
| 
 | |
| @Getter
 | |
| @Setter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class WxPayNotify {
 | |
|     private String openid;
 | |
|     private String outTradeNo;
 | |
|     private String tradeType;
 | |
|     private String bankType;
 | |
|     private String timeEnd;
 | |
|     private String attach;
 | |
|     private String transactionId;
 | |
|     private BigDecimal totalFee;
 | |
|     // --------------------------------------
 | |
|     private String feeType;
 | |
|     private String cashFeeType;
 | |
|     private BigDecimal cashFee;
 | |
|     private BigDecimal settlementTotalFee;
 | |
|     private BigDecimal couponFee;
 | |
|     private Integer couponCount;
 | |
|     private String contractId;
 | |
|     private String tradeState;
 | |
|     // 微信支付分配的终端设备号
 | |
|     private String deviceInfo;
 | |
|     private String isSubscribe;
 | |
| 
 | |
|     // 自定义参数-----------------------------
 | |
|     private String payInfo;
 | |
|     private String payDate;
 | |
|     private String payTime;
 | |
| }
 | |
| 
 |