package com.nq.pojo.reponse;
|
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 返回实体磊
|
* */
|
@Data
|
public class RUserAssets {
|
private Integer id;
|
|
//可用余额
|
private String availableBalance;
|
|
private String availableBalanceUSD;
|
|
//待补金额
|
private String amountToBeCovered;
|
|
// 手续费
|
private String handlingCharge;
|
private String handlingChargeUSD;
|
|
// 累计盈亏
|
private String cumulativeProfitAndLoss;
|
private String cumulativeProfitAndLossUSD;
|
|
//盈亏
|
private String profitAndLoss;
|
//盈亏
|
private String profitAndLossUSD;
|
|
// 账号类型
|
private String accectType;
|
|
|
// 美元转换比例
|
private String usdtRatio;
|
|
private Integer userId;
|
// 冻结金额
|
private String freezeMoney;
|
private String freezeMoneyUSD;
|
// 总资产
|
private String totalMoney;
|
// 总资产
|
private String totalMoneyUSD;
|
//货币符号
|
private String symbol;
|
|
private String symbolCode;
|
}
|