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.
		
		
		
		
			
				
					41 lines
				
				944 B
			
		
		
			
		
	
	
					41 lines
				
				944 B
			| 
											3 years ago
										 | package com.ynxbd.common.bean.pay;
 | ||
|  | 
 | ||
|  | import lombok.Getter;
 | ||
|  | import lombok.NoArgsConstructor;
 | ||
|  | import lombok.Setter;
 | ||
|  | import lombok.ToString;
 | ||
|  | 
 | ||
|  | import java.math.BigDecimal;
 | ||
|  | import java.util.Date;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  * @Author wsq
 | ||
|  |  * @Date 2020/11/30 13:45
 | ||
|  |  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | @Setter
 | ||
|  | @Getter
 | ||
|  | @ToString
 | ||
|  | @NoArgsConstructor
 | ||
|  | public class PayResult {
 | ||
|  |     private Long id;
 | ||
|  |     private String openid;
 | ||
|  |     private String outTradeNo;
 | ||
|  |     private String transId;
 | ||
|  |     private String timeEnd;
 | ||
|  |     private BigDecimal totalFee;
 | ||
|  |     private String info; // 微信支付成功后返回的信息
 | ||
|  |     private Date updateTime;
 | ||
|  |     // 自定义信息
 | ||
|  |     private String attach;
 | ||
|  |     // 银行商户交易编号
 | ||
|  |     private String bankMerchantNo;
 | ||
|  | 
 | ||
|  |     private String patDate;
 | ||
|  |     private String payTime;
 | ||
|  |     // 订单类型
 | ||
|  |     private String orderType;
 | ||
|  |     private String authCode;
 | ||
|  | }
 |