zbb378@sohu.com
2024-11-04 b2bad51be3c8d3e78d7f81a19415faeac2d0297c
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
package com.nova.sankuai.domain.api.huizhixin.vo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 贷款信息
 */
@Data
public class LoanVo {
 
    /**
     * 住房状况,为字典项
     */
    @JsonProperty("house_situation")
    private String houseSituation;
 
    /**
     * 职业,为字典项
     */
    private String occupation;
 
    /**
     * 职称,为字典项
     */
    @JsonProperty("position_title")
    private String positionTitle;
 
    /**
     * 职务,为字典项
     */
    @JsonProperty("position_duty")
    private String positionDuty;
 
    /**
     * 姓氏全拼
     */
    @JsonProperty("last_name_pinyin")
    private String lastNamePinyin;
 
    /**
     * 名字全拼
     */
    @JsonProperty("first_name_pinyin")
    private String firstNamePinyin;
 
    /**
     * 单位性质,为字典项
     */
    @JsonProperty("company_type")
    private String companyType;
 
    /**
     * 还款来源,为字典项
     */
    @JsonProperty("repay_source")
    private String repaySource;
 
    /**
     * 贷款用途,为字典项
     */
    @JsonProperty("loan_purpose")
    private String loanPurpose;
 
    /**
     * 负债总额
     */
    @JsonProperty("debt_amount")
    private String debtAmount;
 
    /**
     * 负债情况
     */
    @JsonProperty("debt_situation")
    private String debtSituation;
 
}