mitao
2025-01-17 afa0dbb4f54e7244835dd67ec33c3e545f122f71
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
package com.ruoyi.order.domain.pojo.account;
 
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * <p>
 * 支付报文
 * </p>
 *
 * @author jqs
 * @since 2023-06-02
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("t_payment_message")
public class PaymentMessage extends Model<PaymentMessage> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 报文id
     */
    @TableId(value = "message_id", type = IdType.AUTO)
    private Long messageId;
    /**
     * 删除标记
     */
    @TableField("del_flag")
    private String delFlag;
    /**
     * 发送类型1订单支付2关闭订单3订单退款4订单分账5完结分账
     */
    @TableField("send_type")
    private String sendType;
    /**
     * 发起关联id
     */
    @TableField("send_id")
    private String sendId;
    /**
     * 发送报文
     */
    @TableField("send_message")
    private String sendMessage;
    /**
     * 结果报文
     */
    @TableField("result_message")
    private String resultMessage;
    /**
     * 创建时间
     */
    @TableField("create_time")
    private Date createTime;
 
 
    @Override
    protected Serializable pkVal() {
        return this.messageId;
    }
 
}