puzhibing
2023-06-20 f3672f3dbcb943bf2d21047bb0c474502bc29930
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
package com.agentdriving.driver.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/3/18 16:58
 */
@Data
@TableName("t_cash_withdrawal")
public class CashWithdrawal {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    /**
     * 类型(1=用户,2=司机)
     */
    @TableField("type")
    private Integer type;
    /**
     * 用户司机id
     */
    @TableField("userDriverId")
    private Integer userDriverId;
    /**
     * 提现编号
     */
    @TableField("code")
    private String code;
    /**
     * 交易类型 11佣金提现 12余额提现
     */
    @TableField("businessType")
    private Integer businessType;
    /**
     * 提现金额
     */
    @TableField("amount")
    private Double amount;
    /**
     * 提现状态 1未成功 2成功
     */
    @TableField("state")
    private Integer state;
    /**
     * 第三方提现流水号
     */
    @TableField("orderNumber")
    private String orderNumber;
    /**
     * 添加时间
     */
    @TableField("createTime")
    private Date createTime;
}