wlzboy
18 小时以前 5f2ee03958a1a16dc27195c76ea7cffb422c95d1
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
package com.ruoyi.payment.domain.model;
 
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 业务回调日志
 * 
 * @author ruoyi
 */
@Data
public class BizCallbackLog implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /** 日志ID */
    private Long id;
 
    /** 订单ID */
    private Long orderId;
 
    /** 交易ID */
    private Long transactionId;
 
    /** 回调地址 */
    private String callbackUrl;
 
    /** 回调请求体 */
    private String payload;
 
    /** HTTP状态码 */
    private Integer httpStatus;
 
    /** 响应内容 */
    private String response;
 
    /** 是否成功 */
    private Boolean success;
 
    /** 重试次数 */
    private Integer retryCount;
 
    /** 最后重试时间 */
    private LocalDateTime lastRetryAt;
 
    /** 创建时间 */
    private LocalDateTime createdAt;
}