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.beans.ConstructorProperties; import java.math.BigDecimal; import java.util.Date; @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; //实名证件类型1.驾驶执照 2.护照 3.身份证件 private Integer realType; private Integer accountType; 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; //注册默认0 1.提交未实名 2.已实名 3.驳回 private Integer isActive; private String authMsg; private String withdrawalPwd; private String vaildNumber; private String lever; private String fundRatio; //信用分 private Integer creditScore; //贷款额度 private BigDecimal loanLimit; }