xiaoyong931011
2020-07-24 f96f41f814f976073e582588d1e23fa84dae7951
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
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;
 
}