| | |
| | | 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;//持仓费
|
| | |
|
| | | }
|