puzhibing
2023-08-08 05e13dc68b3db44868d9e02a10ccc330366a49c6
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
package com.supersavedriving.user.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author zhibing.pu
 * @date 2023/5/6 14:05
 */
@Data
@TableName("t_platform_recharge_record")
public class PlatformRechargeRecord {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 订单号
     */
    @TableField("orderId")
    private String orderId;
    /**
     * 充值金额
     */
    @TableField("price")
    private Double price;
    /**
     * 第三方支付流水号
     */
    @TableField("orderNumber")
    private String orderNumber;
    /**
     * 余额
     */
    @TableField("balance")
    private Double balance;
    /**
     * 支付状态(1=待支付,2=已支付,3=已取消)
     */
    @TableField("state")
    private Integer state;
    /**
     * 支付时间
     */
    @TableField("payTime")
    private Date payTime;
    /**
     * 添加时间
     */
    @TableField("createTime")
    private Date createTime;
}