package com.nq.vo.user; import com.fasterxml.jackson.annotation.JsonFormat; 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; //实名证件类型1.驾驶执照 2.护照 3.身份证件 private Integer realType; private Integer accountType; private String recomPhone; private Integer isLock; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Tokyo") 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; /** * 杠杆倍数,多个用/分割 */ private String siteLever; /*操盘金额*/ private BigDecimal tradingAmount; /** * * 新股冻结资金 */ private BigDecimal djzj; /** * 总资产 * */ private String totalAssets; private String vaildNumber; private String masTotalAssets; private String usTotalAssets; //信用分 private Integer creditScore; //剩余贷款额度 private BigDecimal loanLimit; //待还款金额 private BigDecimal refundAmount; }