| package com.xcong.excoin.modules.trademanage.vo;  | 
|   | 
| import java.math.BigDecimal;  | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField;  | 
| import com.xcong.excoin.common.entity.BaseEntity;  | 
|   | 
| import lombok.Data;  | 
|   | 
| @Data  | 
| public class MemberAccountInfoVo extends BaseEntity {  | 
|       | 
|     /**  | 
|      *   | 
|      */  | 
|     private static final long serialVersionUID = 1L;  | 
|     /**  | 
|      * 手机号(包含国际手机号)  | 
|      */  | 
|     private String phone;  | 
|     /**  | 
|      * 邮箱  | 
|      */  | 
|     private String email;  | 
|     private String inviteId;  | 
|     /**  | 
|      * 币币可用金额  | 
|      */  | 
|     private BigDecimal walletCoinAvailableBalance;  | 
|     /**  | 
|      * 币币总金额  | 
|      */  | 
|     private BigDecimal walletCoinTotalBalance;  | 
|     /**  | 
|      * 币币冻结金额  | 
|      */  | 
|     private BigDecimal walletCoinFrozenBalance;  | 
|     /**  | 
|      * 合约可用金额  | 
|      */  | 
|     private BigDecimal walletAvailableBalance;  | 
|     /**  | 
|      * 合约总金额  | 
|      */  | 
|     private BigDecimal walletTotalBalance;  | 
|     /**  | 
|      * 合约冻结金额  | 
|      */  | 
|     private BigDecimal walletFrozenBalance;  | 
|     /**  | 
|      *总盈亏  | 
|      */  | 
|     private BigDecimal rewardratioByMid;  | 
|     /**  | 
|      * 是否是代理  | 
|      */  | 
|     private int isSuAccount;  | 
|     private int accountType;  | 
|     /**  | 
|      * 代理可用金额  | 
|      */  | 
|     private BigDecimal agentAvailableBalance;  | 
|       | 
|     /**  | 
|      * 姓名  | 
|      */  | 
|     private String realName;   | 
|     /**  | 
|      * 查询条件:账号类型  | 
|      */  | 
|     private String isTest;  | 
|   | 
| }  |