xiaoyong931011
2021-04-15 06eb391942c13d90ef6daf8aef0a9aa91e5fff0f
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
package com.xcong.excoin.modules.agent.pojo;
 
import lombok.Data;
 
@Data
public class MemberDataInfoVo {
 
    private int memberCount;//注册人数
    private String notNullNumber;//持仓人数
 
    private String walletNumber;//币币账户不为空的人数
    private String walletCoinNumber;//合约账户不为空的人数
    private String platformProfitAndLoss;//平台总盈亏
 
    private String walletNum;//币币余额
    private String walletCoinNum;//合约余额
    private String agentNum;//代理账户余额
 
    private double avalableCoin;//币币可用
 
    private double totalCoin;//总资产
 
    private double avalableContract;//合约可用
 
    private double totalContract;//合约总
 
    private double chargeUsdt;//充值USDT
 
    private double appealUsdt;//提现USDT
 
    private double chargeCoin;//充币
 
    private double appealCoin;//提币
 
    private String fee;//佣金
 
    private String closingPrice;//开仓费
 
    private String sellClosingPrice;//平仓费
 
    private String doingPrice;//持仓费
 
    private String yingkui;
 
    private double allCoin;
 
}