package com.nq.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
@TableName("user")
|
@Data
|
public class User {
|
@TableId(type = IdType.AUTO,value = "id")
|
private Integer id;
|
private Integer agentId;
|
private String agentName;
|
private String phone;
|
private String userPwd;
|
private String withPwd;
|
private String nickName;
|
private String realName;
|
private String idCard;
|
|
|
private Integer accountType;
|
|
/**
|
* 卢比总资产
|
* */
|
private BigDecimal userAmt;
|
|
/**
|
* 卢比可用资金
|
* */
|
private BigDecimal enableAmt;
|
|
private BigDecimal sumChargeAmt;
|
|
private BigDecimal sumBuyAmt;
|
|
|
|
private String recomPhone;
|
private Integer isLock;
|
private Integer isLogin;
|
private Date regTime;
|
private String regIp;
|
private String regAddress;
|
private String img1Key;
|
private String img2Key;
|
private String img3Key;
|
private Integer isActive;
|
private String authMsg;
|
/**
|
* 美股
|
* */
|
private BigDecimal userIndexAmt;
|
/**
|
* 美股可用资金
|
* */
|
private BigDecimal enableIndexAmt;
|
private BigDecimal userFutAmt;
|
private BigDecimal enableFutAmt;
|
private String withdrawalPwd;
|
/*总操盘金额*/
|
private BigDecimal tradingAmount;
|
|
private BigDecimal djzj;
|
|
private String vaildNumber;
|
|
private Integer leverageRatio;
|
private String mailbox;
|
private BigDecimal fundsReplenished;//待补资金
|
private Integer leverageRatioData;//待补资金
|
private Date authTime;
|
|
|
}
|