wlzboy
2025-12-06 847a7773ef1a8ad418c6934d35b5f205a97c04d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
}