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;
|
|
}
|