| package com.xzx.gc.pay.dto;  | 
|   | 
|   | 
| import com.fasterxml.jackson.annotation.JsonProperty;  | 
| import io.swagger.annotations.ApiModelProperty;  | 
| import lombok.Data;  | 
| import org.hibernate.validator.constraints.Length;  | 
|   | 
| import javax.validation.constraints.NotBlank;  | 
| import javax.validation.constraints.NotNull;  | 
|   | 
| @Data  | 
| public class PayResultDTO {  | 
|   | 
|   | 
|     @ApiModelProperty(value = "随机串")  | 
|     private String nonce;  | 
|   | 
|     @ApiModelProperty(value = "签名")  | 
|     private String sign;  | 
|   | 
|     @ApiModelProperty(value = "统一下单接口返回的 prepay_id 参数值")  | 
|     private  String prepayId;  | 
|   | 
|   | 
|     @ApiModelProperty(value = "当前时间戳")  | 
|     private String timeStamp;  | 
|   | 
|     @ApiModelProperty("商户ID")  | 
|     private String  mchId;  | 
|   | 
|     @ApiModelProperty("扩展字段")  | 
|     private String extra;  | 
|   | 
|   | 
|     @ApiModelProperty("APPID")  | 
|     private String appId;  | 
|   | 
|   | 
|     @ApiModelProperty("流水号ID")  | 
|     private String payOrderId;  | 
|   | 
|   | 
|   | 
|   | 
|   | 
|   | 
|   | 
| }  |