wlzboy
1 天以前 08f95b2f159b56fa3bd4f4b348855989de8aa456
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.ruoyi.system.domain.vo;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
 
/**
 * 支付结果VO
 * 
 * @author ruoyi
 * @date 2025-01-15
 */
public class TaskPaymentResultVO {
    
    /** 支付ID */
    private Long paymentId;
    
    /** 支付状态 */
    private String payStatus;
    
    /** 二维码链接(仅微信/支付宝) */
    private String codeUrl;
    
    /** 二维码过期时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date qrExpireTime;
    
    /** 交易号(支付成功后) */
    private String tradeNo;
    
    /** 支付时间(支付成功后) */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date payTime;
 
    public Long getPaymentId() {
        return paymentId;
    }
 
    public void setPaymentId(Long paymentId) {
        this.paymentId = paymentId;
    }
 
    public String getPayStatus() {
        return payStatus;
    }
 
    public void setPayStatus(String payStatus) {
        this.payStatus = payStatus;
    }
 
    public String getCodeUrl() {
        return codeUrl;
    }
 
    public void setCodeUrl(String codeUrl) {
        this.codeUrl = codeUrl;
    }
 
    public Date getQrExpireTime() {
        return qrExpireTime;
    }
 
    public void setQrExpireTime(Date qrExpireTime) {
        this.qrExpireTime = qrExpireTime;
    }
 
    public String getTradeNo() {
        return tradeNo;
    }
 
    public void setTradeNo(String tradeNo) {
        this.tradeNo = tradeNo;
    }
 
    public Date getPayTime() {
        return payTime;
    }
 
    public void setPayTime(Date payTime) {
        this.payTime = payTime;
    }
}