ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.nova.sankuai.domain.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/3/15
 */
@Data
@ApiModel(value = "用户基本资料")
public class CustomerBaseDto extends CustomerOcrDto{
 
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "姓名")
    private String name;
 
    @ApiModelProperty(value = "电话")
    private String phone;
 
    @ApiModelProperty(value = "邮箱")
    private String email;
 
    @ApiModelProperty(value = "职业信息")
    private Integer professionInfo;
 
    @ApiModelProperty(value = "婚姻情况0-未婚 1-已婚")
    private String maritalStatus;
 
    @ApiModelProperty(value = "芝麻分")
    private Integer sesame;
 
    @ApiModelProperty(value = "社保缴纳")
    private Integer socialSecurity;
 
    @ApiModelProperty(value = "公积金缴纳")
    private Integer providentFund;
 
    @ApiModelProperty(value = "房产情况")
    private Integer houseStatus;
 
    @ApiModelProperty(value = "车辆情况")
    private Integer carStatus;
 
    @ApiModelProperty(value = "保险保单")
    private Integer insurancePolicy;
 
    @ApiModelProperty(value = "信用卡")
    private Integer creditCard;
 
    @ApiModelProperty(value = "所在城市ID")
    private String city;
 
    @ApiModelProperty(value = "所在城市名称")
    private String cityName;
 
    @ApiModelProperty(value = "贷款金额")
    private Double loanAmount;
 
    @ApiModelProperty(value = "出生日期")
    private String birthday;
 
    @ApiModelProperty(value = "贷款期数")
    private Integer loanTerm;
 
    @ApiModelProperty(value = "借款用途")
    private String useOfLoan;
 
    @ApiModelProperty(value = "月收入")
    private Integer monthlyIncome;
 
    @ApiModelProperty(value = "详细地址")
    private String address;
 
    @ApiModelProperty(value = "企业信息")
    private Integer enterpriseInfo;
 
    @ApiModelProperty(value = "家庭月收入")
    private Double familyMonthlyIncome;
 
    @ApiModelProperty(value = "居住房类型")
    private String livest;
 
    @ApiModelProperty(value = "居住区code")
    private String liveAreaCode;
 
    @ApiModelProperty(value = "学历")
    private String education;
 
    //增加申请时的appName
    @ApiModelProperty(value = "app应用名")
    private String appName;
 
    @ApiModelProperty(value = "身份证号")
    private String idCard;
}