Sunshine
2024-11-04 177f10973fd9bc1f0930369bb086ad9f0053440c
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
102
103
104
105
106
107
package com.nova.sankuai.domain.dto.rongbei;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "profile_dict参数")
public class ProfileDictDto {
    @ApiModelProperty(value = "借款人手机号明文", required = true, notes = "string(11)", example = "如:186203202200")
    private String phone;
 
    @ApiModelProperty(value = "借款金额, 必须为100的整数倍,单位元", notes = "string(32)", example = "如:5000" )
    private String request_amount;
 
    @ApiModelProperty(value = "借款期限,格式:数字 + 个月", notes = "string(11)", example = "如:9个月"  )
    private String request_num;
 
    @ApiModelProperty(value = "身份证号码明文", required = true, notes = "string(18)" )
    private String id_card;
 
    @ApiModelProperty(value = "用户姓名明文", required = true, notes = "string(32)" )
    private String name;
 
    @ApiModelProperty(value = "身份证正面照片URL", required = true, notes = "string(256)" )
    private String id_card_front;
 
    @ApiModelProperty(value = "身份证反面照片URL", required = true, notes = "string(256)" )
    private String id_card_back;
 
    @ApiModelProperty(value = "民族", required = true, notes = "string(32)", example = "如:汉"  )
    private String nation;
 
    @ApiModelProperty(value = "发证机关", required = true, notes = "string(128)", example = "如:XXX公安局"  )
    private String issued_by;
 
    @ApiModelProperty(value = "有效期", required = true, notes = "string(32)", example = "如:2018.02.23-2038.02.23 (身份证扫描结果,⻓期可传⻓期:2020.01.01-⻓期)"  )
    private String valid_date;
 
    @ApiModelProperty(value = "身份证地址", required = true, notes = "string(256)", example = "如:汉"  )
    private String address;
 
    @ApiModelProperty(value = "芝麻分" )
    private Integer sesame_point;
 
    @ApiModelProperty(value = "城市", required = true, notes = "string(32)", example = "如:北京市"  )
    private String city;
 
    @ApiModelProperty(value = "是否有房"  )
    private boolean has_house;
 
    @ApiModelProperty(value = "是否企业主"  )
    private boolean business_owner;
 
    @ApiModelProperty(value = "是否有保险"  )
    private boolean insurance;
 
    @ApiModelProperty(value = "是否有逾期"  )
    private boolean overdue;
 
    @ApiModelProperty(value = "是否有车"  )
    private boolean has_car;
 
    @ApiModelProperty(value = "是否有公积金"  )
    private boolean has_fund;
 
    @ApiModelProperty(value = "是否有社保"  )
    private boolean has_social;
 
    @ApiModelProperty(value = "学历", notes = "string(16)")
    private String education;
 
    @ApiModelProperty(value = "单位名称", notes = "string(128)")
    private String organize_name;
 
    @ApiModelProperty(value = "婚姻状况" )
    private Integer marital_status;
 
    @ApiModelProperty(value = "性别  male female女" )
    private String gender;
 
    @ApiModelProperty(value = "出生日期", notes = "string(10)", example = "如:1999-10-10")
    private String birthday;
 
    @ApiModelProperty(value = "月收入(元)" )
    private Integer monthly_income;
 
    @ApiModelProperty(value = "借款用途", notes = "string(16)" )
    private String loan_usage;
 
    @ApiModelProperty(value = "所属行业", notes = "string(16)" )
    private String industry;
 
    @ApiModelProperty(value = "职业类型", notes = "string(16)" )
    private String job_type;
 
    @ApiModelProperty(value = "月收入(元)", notes = "string(256)")
    private String residential_address;
 
    @ApiModelProperty(value = "公司地址 省-市-区", notes = "string(256)", example = "如:安徽省-合肥市-瑶海区")
    private String company_address;
 
    @ApiModelProperty(value = "公司详细地址", notes = "string(256)")
    private String company_address_detail;
 
 
}