zyy
2025-08-25 1d8278d7570e199ce5ed16742d129424c2ca3aeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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 String 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;
 
}