package com.nova.sankuai.domain.api.huizhixin.vo;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 贷前信息
|
*/
|
@Data
|
public class LoanBeforeVo {
|
|
/**
|
* 学历,为字典项
|
*/
|
private String education;
|
|
/**
|
* 婚姻,为字典项
|
*/
|
private String marriage;
|
|
/**
|
* 省名称
|
*/
|
@JsonProperty("province_name")
|
private String provinceName;
|
|
/**
|
* 省编码
|
*/
|
@JsonProperty("province_code")
|
private String provinceCode;
|
|
/**
|
* 市名称
|
*/
|
@JsonProperty("city_name")
|
private String cityName;
|
|
/**
|
* 市编码
|
*/
|
@JsonProperty("city_code")
|
private String cityCode;
|
|
/**
|
* 区名称,可能为空
|
*/
|
@JsonProperty("district_name")
|
private String districtName;
|
|
/**
|
* 区编码,可能为空 wu
|
*/
|
@JsonProperty("district_code")
|
private String districtCode;
|
|
/**
|
* 详细居住地址,区以后的地址
|
*/
|
@JsonProperty("detail_address")
|
private String detailAddress;
|
|
/**
|
* 单位名称
|
*/
|
private String company;
|
|
/**
|
* 单位省名称
|
*/
|
@JsonProperty("company_province_name")
|
private String companyProvinceName;
|
|
/**
|
* 单位省编码
|
*/
|
@JsonProperty("company_province_code")
|
private String companyProvinceCode;
|
|
/**
|
* 单位市名称
|
*/
|
@JsonProperty("company_city_name")
|
private String companyCityName;
|
|
/**
|
* 单位市编码
|
*/
|
@JsonProperty("company_city_code")
|
private String companyCityCode;
|
|
/**
|
* 单位区名称,可能为空 wu
|
*/
|
@JsonProperty("company_district_name")
|
private String companyDistrictName;
|
|
/**
|
* 单位区编码,可能为空 wu
|
*/
|
@JsonProperty("company_district_code")
|
private String companyDistrictCode;
|
|
/**
|
* 单位详细地址,区以后的地址
|
*/
|
@JsonProperty("company_detail_address")
|
private String companyDetailAddress;
|
|
/**
|
* 单位电话 wu
|
*/
|
@JsonProperty("company_phone")
|
private String companyPhone;
|
|
/**
|
* 所属行业,为字典项
|
*/
|
private String industry;
|
|
/**
|
* 职位,为字典项
|
*/
|
private String position;
|
|
/**
|
* 月收入,为字典项
|
*/
|
@JsonProperty("monthly_salary")
|
private String monthlySalary;
|
|
/**
|
* 贷款用途,为字典项
|
*/
|
@JsonProperty("loan_purpose")
|
private String loanPurpose;
|
|
/**
|
* 电子邮箱
|
*/
|
private String email;
|
|
/**
|
* 第一联系人姓名
|
*/
|
@JsonProperty("first_contact_name")
|
private String firstContactName;
|
|
/**
|
* 第一联系人联系方式
|
*/
|
@JsonProperty("first_contact_phone")
|
private String firstContactPhone;
|
|
/**
|
* 与第一联系人关系,为字典项
|
*/
|
@JsonProperty("first_contact_relation")
|
private String firstContactRelation;
|
|
/**
|
* 第二联系人姓名
|
*/
|
@JsonProperty("second_contact_name")
|
private String secondContactName;
|
|
/**
|
* 第二联系人联系方式
|
*/
|
@JsonProperty("second_contact_phone")
|
private String secondContactPhone;
|
|
/**
|
* 与第二联系人关系,为字典项
|
*/
|
@JsonProperty("second_contact_relation")
|
private String secondContactRelation;
|
}
|