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
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
package com.nq.vo.user;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
@Data
public class UserInfoVO {
    private Integer id;
    private Integer agentId;
    private String agentName;
    private String phone;
    private String nickName;
    private String realName;
 
    private String idCard;
 
    private Integer accountType;
 
    private String recomPhone;
 
    private Integer isLock;
 
    private Date regTime;
 
    private String regIp;
 
    private String regAddress;
 
    private String img1Key;
 
    private String img2Key;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    private String img3Key;
    private Integer isActive;
    private String authMsg;
    // 卢比的总资产  enableAmt+totlaPr
    private BigDecimal userAmt;
 
 
    private String userAmtToUsdt;
 
    // 卢比的可以资金
    private BigDecimal enableAmt;
 
 
 
    // 卢比的可以资金
    private String enableAmtToUsdt;
 
    // 卢比的盈利
    private BigDecimal allProfitAndLose;
 
    // 卢比的盈利
    private String allProfitAndLoseToUsdt;
 
    private BigDecimal userIndexAmt;
    private BigDecimal enableIndexAmt;
 
 
    // 卢比的盈利
    private BigDecimal usAllProfitAndLose;
 
    private BigDecimal userFuturesAmt;
    private BigDecimal enableFuturesAmt;
 
    private BigDecimal allFreezAmt;
 
    private String allFreezAmtToUsdt;
 
    private BigDecimal usAllFreezAmt;
 
    private BigDecimal allIndexProfitAndLose;
    private BigDecimal allIndexFreezAmt;
    private BigDecimal allFuturesProfitAndLose;
    private BigDecimal allFuturesFreezAmt;
    /**
     * 杠杆倍数,多个用/分割
     */
    private String siteLever;
 
    /*操盘金额*/
    private BigDecimal tradingAmount;
 
    /**
     *
     * 新股冻结资金
     */
    private BigDecimal djzj;
 
    /**
     * 总资产
     * */
    private String totalAssets;
 
 
 
 
    private String vaildNumber;
 
    private Integer applyFlag;
 
    //持仓资金
    private String marketValue;
    //总账户资金 (持仓+可提)
    private String totalAmt;
    //cash 可用资金(可提*杠杆倍数)
    private Float cash;
    //历史盈亏
    private Float profit;
 
    private Float supplement;
    private BigDecimal fundsReplenished;//待补资金
    private String mailbox;
 
    public UserInfoVO() {
    }
 
}