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
package com.gear.swx.domain;
 
import java.math.BigDecimal;
import com.gear.common.annotation.Excel;
import com.gear.common.annotation.Where;
import com.gear.common.enums.Condition;
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;
 
/**
 * 用户管理对象 swx_user
 *
 * @author czx
 * @date 2023-11-18
 */
@Data
@TableName("swx_user")
public class SwxUser extends BusiBaseEntity {
 
    private static final long serialVersionUID=1L;
 
    /** $column.columnComment */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
 
    /** 邮箱 */
    @Excel(name = "邮箱")
    private String email;
 
    /** 密码 */
    @Excel(name = "密码")
    private String password;
 
    /** 第三方_谷歌 */
    @Excel(name = "第三方_谷歌")
    private String gmailKey;
 
    /** 第三方账号_facbook */
    @Excel(name = "第三方账号_facbook")
    private String facebookKey;
 
    /** 用户账号 */
    @Excel(name = "用户账号")
    @Where(value = Condition.like,column = "userName")
    private String userName;
 
    /** 邀请码 */
    @Excel(name = "邀请码")
    private Integer inviteNumber;
 
    private String invetedUser;
    /** 余额 */
    @Excel(name = "余额")
    private BigDecimal amount;
 
    /** 贷款金额 */
    @Excel(name = "贷款金额")
    private BigDecimal loanAmount;
 
    /** 保证金占用 */
    @Excel(name = "保证金占用")
    private BigDecimal bondAmount;
 
    /** 可提现金额 */
    @Excel(name = "可提现金额")
    private BigDecimal withdrawalAmount;
 
    /** 利润 */
    @Excel(name = "利润")
    private BigDecimal profit;
 
    /** 验证状态 */
    @Excel(name = "验证状态")
    private Integer idefinderStatus;
 
    /** 手机号 */
    @Excel(name = "手机号")
    @Where(value = Condition.like,column = "phone")
    private String phone;
 
    /** 国家 */
    @Excel(name = "国家")
    private String country;
 
    /** 地址 */
    @Excel(name = "地址")
    private String address;
 
    /** 性别 */
    @Excel(name = "性别")
    private Integer sex;
 
    /** 是否模拟账户 */
    @Excel(name = "是否模拟账户")
    private Integer virtuallyStatus;
    @Where(value = Condition.eq,column = "status")
    private Integer status;
 
    private BigDecimal allRecharge;
 
    private BigDecimal allWithdrawal;
 
    private String level;
 
    private Integer bw;
 
    /** 是否业务员(0否1是) */
    private Integer salesman;
}