zj
2024-06-03 81a29edf665881828e4ca1f0e444bfcbc6ab6f24
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
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
@TableName("user")
@Data
public class User {
    @TableId(type = IdType.AUTO,value = "id")
    private Integer id;
    private Integer agentId;
    private String agentName;
    private String phone;
    private String userPwd;
    private String withPwd;
    private String nickName;
    private String realName;
    private String idCard;
 
 
    private Integer accountType;
 
    /**
     * 卢比总资产
     * */
    private BigDecimal userAmt;
 
    /**
     * 卢比可用资金
     * */
    private BigDecimal enableAmt;
 
    private BigDecimal sumChargeAmt;
 
    private BigDecimal sumBuyAmt;
 
 
 
    private String recomPhone;
    private Integer isLock;
    private Integer isLogin;
    private Date regTime;
    private String regIp;
    private String regAddress;
    private String img1Key;
    private String img2Key;
    private String img3Key;
    private Integer isActive;
    private String authMsg;
    /**
     * 美股
     * */
    private BigDecimal userIndexAmt;
    /**
     * 美股可用资金
     * */
    private BigDecimal enableIndexAmt;
    private BigDecimal userFutAmt;
    private BigDecimal enableFutAmt;
    private String withdrawalPwd;
    /*总操盘金额*/
    private BigDecimal tradingAmount;
 
    private BigDecimal djzj;
 
    private String vaildNumber;
 
    private Integer leverageRatio;
    private String mailbox;
    private BigDecimal fundsReplenished;//待补资金
    private Integer leverageRatioData;//待补资金
    private Date authTime;
 
 
}