| package com.xcong.excoin.modules.member.vo;  | 
|   | 
| 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;  | 
|   | 
|   | 
| }  |