xiaoyong931011
2021-03-26 448eaa2a735a409e09a403b231c371229b7929c5
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
package com.xcong.excoin.modules.member.vo;
 
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.xcong.excoin.common.utils.DoubleTwoSerializer;
 
import lombok.Data;
 
@Data
public class MemberInfoDetailVo {
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double walletCoinNum;//币币余额
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double agentNum;//代理账户余额
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double fee;//佣金
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double totalCoin;//总资产剩余
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double avalableContract;//合约可用余额
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double totalContract;//合约总余额
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double chargeUsdt;//充值USDT
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double appealUsdt;//提现USDT
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double chargeCoin;//充币
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double appealCoin;//提币
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double platformProfitAndLoss;//总盈亏
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double closingPrice;//开仓费
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double sellClosingPrice;//平仓费
 
    @JsonSerialize(using = DoubleTwoSerializer.class)
    private double doingPrice;//持仓费
    
}