All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.channel.bean.order.OrderPayInfo Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.bean.order;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 支付信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
public class OrderPayInfo implements Serializable {

  private static final long serialVersionUID = -5085386252699113948L;
  /** 预支付id */
  @JsonProperty("prepayId")
  private String prepayId;

  /** 预支付时间,秒级时间戳 */
  @JsonProperty("prepay_time")
  private Long prepayTime;

  /** 支付时间,秒级时间戳 */
  @JsonProperty("pay_time")
  private Long payTime;

  /** 支付单号 */
  @JsonProperty("transaction_id")
  private String transactionId;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy