zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package com.gear.finance.domain;
 
import java.math.BigDecimal;
import com.gear.common.annotation.Excel;
import lombok.Data;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
import com.gear.common.core.domain.BusiBaseEntity;
 
/**
 * 用户管理对象 finance_user
 *
 * @author czx
 * @date 2023-11-16
 */
@Data
@TableName("finance_user")
public class FinanceUser extends BusiBaseEntity {
 
    private static final long serialVersionUID=1L;
 
    /** $column.columnComment */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
 
    /** 用户名 */
    @Excel(name = "用户名")
    private String userName;
 
    /** 加密后的密码 */
    @Excel(name = "加密后的密码")
    private String password;
 
    /** 手机号 */
    @Excel(name = "手机号")
    private String phone;
 
    /** 支付密码 */
    @Excel(name = "支付密码")
    private String payPwd;
 
    /** 等级 */
    @Excel(name = "等级")
    private String level;
 
    /** 团队等级 */
    @Excel(name = "团队等级")
    private String groupLevel;
 
    /** 邀请码 */
    @Excel(name = "邀请码")
    private Long inviteNumber;
 
    /** 认证状态 */
    @Excel(name = "认证状态")
    private Integer identificationStatus;
 
    /** 总充值金额 */
    @Excel(name = "总充值金额")
    private BigDecimal rechargeAmount;
 
    /** 总提现金额 */
    @Excel(name = "总提现金额")
    private BigDecimal withdrawalAmount;
 
    /** 余额包余额 */
    @Excel(name = "余额包余额")
    private BigDecimal yebAmount;
 
    /** 可提现金额 */
    @Excel(name = "可提现金额")
    private BigDecimal canWithdrawalAmount;
 
    /** 可用余额 */
    @Excel(name = "可用余额")
    private BigDecimal amount;
 
    /** 总资产 */
    @Excel(name = "总资产")
    private BigDecimal allAmount;
 
    /** 总投资金额 */
    @Excel(name = "总投资金额")
    private BigDecimal investAmount;
 
    /** 总分红金额 */
    @Excel(name = "总分红金额")
    private BigDecimal bonusAmount;
 
    /** 积分 */
    @Excel(name = "积分")
    private Long integral;
 
    /** 直推下线人数 */
    @Excel(name = "直推下线人数")
    private Integer offlineNum;
 
    /** 直推下线总投资 */
    @Excel(name = "直推下线总投资")
    private BigDecimal offlineInvest;
 
    /** 知推下线总充值 */
    @Excel(name = "知推下线总充值")
    private BigDecimal offlineRecharge;
 
    /** 直推下线总提现 */
    @Excel(name = "直推下线总提现")
    private BigDecimal offlineWithdrawal;
 
    /** 团队总人数 */
    @Excel(name = "团队总人数")
    private Long groupNum;
 
    /** 团队总投资 */
    @Excel(name = "团队总投资")
    private BigDecimal groupInvest;
 
    /** 团队总充值 */
    @Excel(name = "团队总充值")
    private BigDecimal groupRecharge;
 
    /** 团队总提现 */
    @Excel(name = "团队总提现")
    private BigDecimal groupWithdrawal;
 
}