风控中台对接-新增开始有效期

This commit is contained in:
zhanglei 2023-08-27 09:52:24 +08:00
parent b76daf6e19
commit 461facb2bd
5 changed files with 18 additions and 2 deletions

View File

@ -479,7 +479,7 @@
<attribute name="e_mail" label="电子邮箱" type="STRING" length="32" />
<attribute name="area_code" label="户籍行政区划编码" type="STRING" length="20" />
<attribute name="idexpiry" label="北财-承租人身份证有效期" type="STRING" length="32"/>
<attribute name="start_idexpiry" label="北财-有效期开始时间" type="STRING" length="32"/>
<attribute name="work_address_id" label="北财-承租人单位地址关联id" type="STRING" length="32"/>
<attribute name="monthly_expenses" label="北财-承租人月支出" type="STRING" length="32"/>
<attribute name="pre_operate_car_type" label="北财-承租人过去曾运营车辆类型" type="STRING" length="32"/>
@ -2787,7 +2787,7 @@
<attribute name="residential_status" label="北财-共同申请人居住状况" type="STRING" length="32"/>
<attribute name="childrens_number" label="北财-子女数量" type="STRING" length="32"/>
<attribute name="birthday" label="北财-出生日期" type="STRING" length="32"/>
<attribute name="start_idexpiry" label="北财-有效期开始时间" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>

View File

@ -4239,6 +4239,7 @@
<attribute name="childrens_number" label="北财-子女数量" type="STRING" length="32"/>
<attribute name="birthday" label="北财-出生日期" type="STRING" length="32"/>
<attribute name="legal_representative" label="北财-担保人为企业时的法定代表人信息" type="STRING" length="32"/>
<attribute name="start_idexpiry" label="北财-担保人有效期开始时间" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>

View File

@ -16,6 +16,12 @@ public interface CUSTOMER_FAMILY_TEMP{
// 20230817 北财风控中台对接-共同申请人出生日期
/**
* start_idexpiry 有效期开始时间 STRING(32)<br>
*/
public static final String start_idexpiry = "start_idexpiry";
/**
* 出生日期 STRING(32)<br>
*/

View File

@ -16,6 +16,11 @@ public interface CUSTOMER_PERSON_TEMP{
// 20230809 北财风控中台对接-承租人新增字段
/**
* start_idexpiry 有效期开始时间 STRING(32)<br>
*/
public static final String start_idexpiry = "start_idexpiry";
/**
* 承租人身份证有效期 STRING(32)<br>
*/

View File

@ -14,6 +14,10 @@ public interface LB_GUARANTEE_UNIT_TEMP{
*/
public static final String CLASS_NAME = "jbo.com.tenwa.lease.comm.LB_GUARANTEE_UNIT_TEMP";
// 20230817 北财风控中台对接-担保人新增字段
/**
* start_idexpiry 有效期开始时间 STRING(32)<br>
*/
public static final String start_idexpiry = "start_idexpiry";
/**
* 担保人为企业时的法定代表人信息 STRING(32)<br>
*/