package com.ruoyi.payment.interfaces.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* 支付响应
|
*
|
* @author ruoyi
|
*/
|
@Data
|
public class PaymentResponse implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/** 订单ID */
|
private Long orderId;
|
|
/** 交易ID */
|
private Long transactionId;
|
|
/** 订单状态 */
|
private String status;
|
|
/** Base64二维码 */
|
private String qrBase64;
|
|
/** 过期时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime expireAt;
|
}
|