wlzboy
6 天以前 fe33646ee6e2d1e57f2b51812e94983a0e9efb04
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
package com.ruoyi.payment.domain.model;
 
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 渠道回调日志
 * 
 * @author ruoyi
 */
@Data
public class NotifyLog implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /** 日志ID */
    private Long id;
 
    /** 支付渠道 */
    private String channel;
 
    /** 渠道通知唯一标识 */
    private String notifyIdOrSerial;
 
    /** 订单ID */
    private Long orderId;
 
    /** 交易ID */
    private Long transactionId;
 
    /** 回调原始报文 */
    private String payload;
 
    /** 签名验证是否通过 */
    private Boolean verified;
 
    /** 是否已处理 */
    private Boolean processed;
 
    /** 处理结果 */
    private String result;
 
    /** 接收时间 */
    private LocalDateTime createdAt;
}