风控中台调整-承租人担保人字段调整
This commit is contained in:
parent
84d1b80720
commit
2317db6405
@ -2772,23 +2772,20 @@
|
||||
<attribute name="nation" label="北财-共同申请人民族" type="STRING" length="32"/>
|
||||
<attribute name="education_level" label="北财-共同申请人最高学历" type="STRING" length="32"/>
|
||||
<attribute name="work_address" label="北财-共同申请人单位地址" type="STRING" length="500"/>
|
||||
<attribute name="live_address" label="北财-共同申请人居住地址" type="STRING" length="500"/>
|
||||
<attribute name="id_address" label="北财-共同申请人户籍地址" type="STRING" length="500"/>
|
||||
<attribute name="enterprise_nature" label="北财-共同申请人企业性质" type="STRING" length="32"/>
|
||||
<attribute name="industry_type" label="北财-共同申请人行业类型" type="STRING" length="32"/>
|
||||
<attribute name="career_type" label="北财-共同申请人职业类型" type="STRING" length="32"/>
|
||||
<attribute name="position" label="北财-共同申请人职位" type="STRING" length="32"/>
|
||||
<attribute name="monthly_income" label="北财-共同申请人月收入" type="STRING" length="32"/>
|
||||
<attribute name="monthly_expenses" label="北财-共同申请人月支出" type="STRING" length="32"/>
|
||||
|
||||
|
||||
<attribute name="duties_type" label="北财-共同申请人职务" type="STRING" length="32"/>
|
||||
<attribute name="work_address_code" label="北财-共同申请人单位地址编码" type="STRING" length="32"/>
|
||||
<attribute name="work_address_id" label="北财-共同申请人单位地址关联id" type="STRING" length="32"/>
|
||||
<attribute name="live_address_code" label="北财-共同申请人居住地址编码" type="STRING" length="32"/>
|
||||
<attribute name="live_address_id" label="北财-共同申请人居住地址关联id" type="STRING" length="32"/>
|
||||
<attribute name="id_address_code" label="北财-共同申请人户籍地址编码" type="STRING" length="32"/>
|
||||
<attribute name="id_address_id" label="北财-共同申请人户籍地址关联id" type="STRING" length="32"/>
|
||||
<attribute name="marry_type" label="北财-共同申请人婚姻状况" type="STRING" length="32"/>
|
||||
<attribute name="residential_status" label="北财-共同申请人居住状况" type="STRING" length="32"/>
|
||||
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
|
||||
@ -4223,23 +4223,19 @@
|
||||
<attribute name="idexpiry" label="北财-担保人身份证有效期" type="STRING" length="32"/>
|
||||
<attribute name="nation" label="北财-担保人民族" type="STRING" length="32"/>
|
||||
<attribute name="education_level" label="北财-最高学历" type="STRING" length="32"/>
|
||||
<attribute name="work_address" label="北财-担保人单位地址" type="STRING" length="500"/>
|
||||
<attribute name="live_address" label="北财-担保人居住地址" type="STRING" length="500"/>
|
||||
<attribute name="id_address" label="北财-担保人户籍地址" type="STRING" length="500"/>
|
||||
<attribute name="enterprise_nature" label="北财-担保人企业性质" type="STRING" length="32"/>
|
||||
<attribute name="industry_type" label="北财-担保人行业类型" type="STRING" length="32"/>
|
||||
<attribute name="career_type" label="北财-担保人职业类型" type="STRING" length="32"/>
|
||||
<attribute name="position" label="北财-担保人职位" type="STRING" length="32"/>
|
||||
<attribute name="monthly_income" label="北财-担保人月收入" type="STRING" length="32"/>
|
||||
<attribute name="monthly_expenses" label="北财-担保人月支出" type="STRING" length="32"/>
|
||||
|
||||
<attribute name="duties_type" label="北财-担保人职务" type="STRING" length="32"/>
|
||||
<attribute name="work_address_code" label="北财-担保人单位地址编码" type="STRING" length="32"/>
|
||||
<attribute name="work_address_id" label="北财-担保人单位地址关联id" type="STRING" length="32"/>
|
||||
<attribute name="live_address_code" label="北财-担保人居住地址编码" type="STRING" length="32"/>
|
||||
<attribute name="live_address_id" label="北财-担保人居住地址关联id" type="STRING" length="32"/>
|
||||
<attribute name="id_address_code" label="北财-担保人户籍地址编码" type="STRING" length="32"/>
|
||||
<attribute name="id_address_id" label="北财-担保人户籍地址关联id" type="STRING" length="32"/>
|
||||
<attribute name="residential_status" label="北财-担保人居住状况" type="STRING" length="32"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
|
||||
@ -15,12 +15,17 @@ public interface CUSTOMER_FAMILY_TEMP{
|
||||
public static final String CLASS_NAME = "jbo.app.tenwa.customer.CUSTOMER_FAMILY_TEMP";
|
||||
|
||||
|
||||
// 20230817 北财风控中台对接-共同申请人新增字段
|
||||
// 20230817 北财风控中台对接-共同申请人婚姻状况
|
||||
/**
|
||||
* 共同申请人婚姻状况 STRING(32)<br>
|
||||
*/
|
||||
public static final String marry_type = "marry_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职务 STRING(32)<br>
|
||||
* 共同申请人居住状况 STRING(32)<br>
|
||||
*/
|
||||
public static final String duties_type = "duties_type";
|
||||
public static final String residential_status = "residential_status";
|
||||
|
||||
|
||||
/**
|
||||
* 共同申请人单位地址关联id STRING(32)<br>
|
||||
@ -74,10 +79,6 @@ public interface CUSTOMER_FAMILY_TEMP{
|
||||
*/
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 共同申请人居住地址 STRING(500)<br>
|
||||
*/
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 共同申请人户籍地址 STRING(500)<br>
|
||||
@ -99,16 +100,6 @@ public interface CUSTOMER_FAMILY_TEMP{
|
||||
*/
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 共同申请人职位 STRING(32)<br>
|
||||
*/
|
||||
public static final String position = "position";
|
||||
|
||||
/**
|
||||
* 共同申请人月收入 STRING(32)<br>
|
||||
*/
|
||||
public static final String monthly_income = "monthly_income";
|
||||
|
||||
/**
|
||||
* 共同申请人月支出 STRING(32)<br>
|
||||
*/
|
||||
|
||||
@ -15,6 +15,11 @@ public interface LB_GUARANTEE_UNIT_TEMP{
|
||||
public static final String CLASS_NAME = "jbo.com.tenwa.lease.comm.LB_GUARANTEE_UNIT_TEMP";
|
||||
// 20230817 北财风控中台对接-担保人新增字段
|
||||
|
||||
/**
|
||||
* 担保人居住状况 STRING(32)<br>
|
||||
*/
|
||||
public static final String residential_status = "residential_status";
|
||||
|
||||
/**
|
||||
* 担保人职务 STRING(32)<br>
|
||||
*/
|
||||
@ -67,16 +72,6 @@ public interface LB_GUARANTEE_UNIT_TEMP{
|
||||
*/
|
||||
public static final String education_level = "education_level";
|
||||
|
||||
/**
|
||||
* 担保人单位地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String work_address = "work_address";
|
||||
|
||||
/**
|
||||
* 担保人居住地址 STRING(32)<br>
|
||||
*/
|
||||
public static final String live_address = "live_address";
|
||||
|
||||
/**
|
||||
* 担保人户籍地址 STRING(32)<br>
|
||||
*/
|
||||
@ -97,11 +92,6 @@ public interface LB_GUARANTEE_UNIT_TEMP{
|
||||
*/
|
||||
public static final String career_type = "career_type";
|
||||
|
||||
/**
|
||||
* 担保人职位 STRING(32)<br>
|
||||
*/
|
||||
public static final String position = "position";
|
||||
|
||||
/**
|
||||
* 担保人月收入 STRING(32)<br>
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user