package com.nq.vo.user;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
@Data
|
public class UserInfoVO {
|
private Integer id;
|
private Integer agentId;
|
private String agentName;
|
private String phone;
|
private String nickName;
|
private String realName;
|
|
private String idCard;
|
|
private Integer accountType;
|
|
private String recomPhone;
|
|
private Integer isLock;
|
|
private Date regTime;
|
|
private String regIp;
|
|
private String regAddress;
|
|
private String img1Key;
|
|
private String img2Key;
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
private String img3Key;
|
private Integer isActive;
|
private String authMsg;
|
// 卢比的总资产 enableAmt+totlaPr
|
private BigDecimal userAmt;
|
|
|
private String userAmtToUsdt;
|
|
// 卢比的可以资金
|
private BigDecimal enableAmt;
|
|
|
|
// 卢比的可以资金
|
private String enableAmtToUsdt;
|
|
// 卢比的盈利
|
private BigDecimal allProfitAndLose;
|
|
// 卢比的盈利
|
private String allProfitAndLoseToUsdt;
|
|
private BigDecimal userIndexAmt;
|
private BigDecimal enableIndexAmt;
|
|
|
// 卢比的盈利
|
private BigDecimal usAllProfitAndLose;
|
|
private BigDecimal userFuturesAmt;
|
private BigDecimal enableFuturesAmt;
|
|
private BigDecimal allFreezAmt;
|
|
private String allFreezAmtToUsdt;
|
|
private BigDecimal usAllFreezAmt;
|
|
private BigDecimal allIndexProfitAndLose;
|
private BigDecimal allIndexFreezAmt;
|
private BigDecimal allFuturesProfitAndLose;
|
private BigDecimal allFuturesFreezAmt;
|
/**
|
* 杠杆倍数,多个用/分割
|
*/
|
private String siteLever;
|
|
/*操盘金额*/
|
private BigDecimal tradingAmount;
|
|
/**
|
*
|
* 新股冻结资金
|
*/
|
private BigDecimal djzj;
|
|
/**
|
* 总资产
|
* */
|
private String totalAssets;
|
|
|
|
|
private String vaildNumber;
|
|
private Integer applyFlag;
|
|
//持仓资金
|
private String marketValue;
|
//总账户资金 (持仓+可提)
|
private String totalAmt;
|
//cash 可用资金(可提*杠杆倍数)
|
private Float cash;
|
//历史盈亏
|
private Float profit;
|
|
private Float supplement;
|
private BigDecimal fundsReplenished;//待补资金
|
private String mailbox;
|
|
public UserInfoVO() {
|
}
|
|
}
|