风控中台对接-评分结果实体

This commit is contained in:
zhanglei 2023-08-24 14:48:21 +08:00
parent e6f50cef11
commit 1e82d0596b
4 changed files with 340 additions and 0 deletions

View File

@ -757,5 +757,72 @@
</managerProperties>
</manager>
</class>
<class name="RC_SCORE_RESULT" label="北财风控中台评分结果" describe="北财风控中台评分结果" keyAttributes="id">
<attributes>
<attribute name="id" label="唯一标识" type="STRING" length="32" />
<attribute name="score_result_id" label="唯一标识" type="STRING" length="32" />
<attribute name="project_no" label="业务申请编号" type="STRING" length="32" />
<attribute name="flow_no" label="流程编号" type="STRING" length="32"/>
<attribute name="fraud_result_data" label="反欺诈结果" type="STRING" length="2000"/>
<attribute name="score_result_data" label="评分结果" type="STRING" length="2000"/>
<attribute name="fraud_result_status" label="反欺诈结果状态" type="STRING" length="32"/>
<attribute name="fraud_result_status_value" label="反欺诈结果状态描述" type="STRING" length="32"/>
<attribute name="score_result_status" label="评分结果状态" type="STRING" length="32"/>
<attribute name="score_result_status_value" label="评分结果状态描述" type="STRING" length="32"/>
<attribute name="fraud_alert_code" label="反欺诈预警结果H、S、C" type="STRING" length="32"/>
<attribute name="fraud_taken_code" label="反欺诈判定结果F、K、S、空" type="STRING" length="32"/>
<attribute name="score_result_code" label="评分结果 AA RR RD DD" type="STRING" length="32"/>
<attribute name="input_time" label="登记时间" type="STRING" length="32"/>
<attribute name="update_time" label="更新时间" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="rc_score_result"/>
</managerProperties>
</manager>
</class>
<class name="RC_SCORE_RESULT_DETAIL" label="北财风控中台评分结果详细页" describe="北财风控中台评分结果详细页" keyAttributes="id">
<attributes>
<attribute name="id" label="唯一标识" type="STRING" length="32" />
<attribute name="score_result_detail_id" label="唯一标识" type="STRING" length="32" />
<attribute name="score_result_id" label="北财风控中台评分结果唯一标识" type="STRING" length="32" />
<attribute name="project_no" label="业务申请编号" type="STRING" length="32" />
<attribute name="flow_no" label="流程编号" type="STRING" length="32"/>
<attribute name="person_type" label="人员类型:承租人、共申人、担保人" type="STRING" length="32"/>
<attribute name="person_name" label="人员名称" type="STRING" length="32"/>
<attribute name="person_card_type" label="人员证件类型" type="STRING" length="32"/>
<attribute name="person_card_no" label="人员证件号码" type="STRING" length="32"/>
<attribute name="third_result_url" label="三方结果链接地址" type="STRING" length="500"/>
<attribute name="pboc_result_url" label="pboc结果链接地址" type="STRING" length="500"/>
<attribute name="input_time" label="登记时间" type="STRING" length="32"/>
<attribute name="update_time" label="更新时间" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="rc_score_result_detail"/>
</managerProperties>
</manager>
</class>
<class name="RC_SCORE_RESULT_LOG" label="北财风控中台评分反欺诈结果推送日志表" describe="北财风控中台评分反欺诈结果推送日志表" keyAttributes="id">
<attributes>
<attribute name="id" label="唯一标识" type="STRING" length="32" />
<attribute name="score_result_id" label="唯一标识" type="STRING" length="32" />
<attribute name="project_no" label="业务申请编号" type="STRING" length="32" />
<attribute name="flow_no" label="流程编号" type="STRING" length="32"/>
<attribute name="result_type" label="推送结果类型评分结果1反欺诈2" type="STRING" length="32"/>
<attribute name="result_data" label="评分结果" type="STRING" length="2000"/>
<attribute name="result_status" label="结果状态" type="STRING" length="32"/>
<attribute name="result_status_value" label="结果状态描述" type="STRING" length="32"/>
<attribute name="fraud_alert_code" label="反欺诈预警结果H、S、C" type="STRING" length="32"/>
<attribute name="fraud_taken_code" label="反欺诈判定结果F、K、S、空" type="STRING" length="32"/>
<attribute name="score_result_code" label="评分结果 AA RR RD DD" type="STRING" length="32"/>
<attribute name="input_time" label="登记时间" type="STRING" length="32"/>
</attributes>
<manager>
<managerProperties>
<property name="table" value="rc_score_result_log"/>
</managerProperties>
</manager>
</class>
</package>
</jbo>

View File

@ -0,0 +1,101 @@
package jbo.oti;
/**
* 北财风控中台评分结果 rc_score_result
*/
public interface RC_SCORE_RESULT {
/**
* 业务类型<br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.oti.RC_SCORE_RESULT";
/**
* id`
* STRING(20)<br>
*/
public static final String id = "id";
/**
* 唯一标识
*/
public static final String score_result_id = "score_result_id";
/**
* 业务申请编号
*/
public static final String project_no = "project_no";
/**
* 流程编号
*/
public static final String flow_no = "flow_no";
/**
* 反欺诈结果
*/
public static final String fraud_result_data = "fraud_result_data";
/**
* 评分结果
*/
public static final String score_result_data = "score_result_data";
/**
* 反欺诈结果状态
*/
public static final String fraud_result_status = "fraud_result_status";
/**
* 反欺诈结果状态描述
*/
public static final String fraud_result_status_value = "fraud_result_status_value";
/**
* 评分结果状态
*/
public static final String score_result_status = "score_result_status";
/**
* 评分结果状态描述
*/
public static final String score_result_status_value = "score_result_status_value";
/**
* 反欺诈预警结果HSC
*/
public static final String fraud_alert_code = "fraud_alert_code";
/**
* 反欺诈判定结果FKS
*/
public static final String fraud_taken_code = "fraud_taken_code";
/**
* 评分结果 AA RR RD DD
*/
public static final String score_result_code = "score_result_code";
/**
* 登记时间
*/
public static final String input_time = "input_time";
/**
* 更新时间
*/
public static final String update_time = "update_time";
}

View File

@ -0,0 +1,87 @@
package jbo.oti;
/**
* 北财风控中台评分结果详细页 RC_SCORE_RESULT_DETAIL
*/
public interface RC_SCORE_RESULT_DETAIL {
/**
* 业务类型<br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.oti.RC_SCORE_RESULT_DETAIL";
/**
* id`
* STRING(20)<br>
*/
public static final String id = "id";
/**
* 唯一标识
*/
public static final String score_result_id = "score_result_id";
/**
* 业务申请编号
*/
public static final String score_result_detail_id = "score_result_detail_id";
/**
* 业务申请编号
*/
public static final String project_no = "project_no";
/**
* 流程编号
*/
public static final String flow_no = "flow_no";
/**
* 人员类型承租人共申人担保人
*/
public static final String person_type = "person_type";
/**
* 人员名称
*/
public static final String person_name = "person_name";
/**
* 人员证件类型
*/
public static final String person_card_type = "person_card_type";
/**
* 人员证件号码
*/
public static final String person_card_no = "person_card_no";
/**
* 三方结果链接地址
*/
public static final String third_result_url = "third_result_url";
/**
* pboc结果链接地址
*/
public static final String pboc_result_url = "pboc_result_url";
/**
* 登记时间
*/
public static final String input_time = "input_time";
/**
* 更新时间
*/
public static final String update_time = "update_time";
}

View File

@ -0,0 +1,85 @@
package jbo.oti;
/**
* 北财风控中台评分反欺诈结果推送日志表 rc_score_result_log
*/
public interface RC_SCORE_RESULT_LOG {
/**
* 业务类型<br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.oti.RC_SCORE_RESULT_LOG";
/**
* id`
* STRING(20)<br>
*/
public static final String id = "id";
/**
* 唯一标识
*/
public static final String score_result_id = "score_result_id";
/**
* 业务申请编号
*/
public static final String project_no = "project_no";
/**
* 流程编号
*/
public static final String flow_no = "flow_no";
/**
* 结果
*/
public static final String result_data = "result_data";
/**
* 结果状态
*/
public static final String result_status = "result_status";
/**
* 反结果状态描述
*/
public static final String result_status_value = "result_status_value";
/**
* 反欺诈预警结果HSC
*/
public static final String fraud_alert_code = "fraud_alert_code";
/**
* 反欺诈判定结果FKS
*/
public static final String fraud_taken_code = "fraud_taken_code";
/**
* 评分结果 AA RR RD DD
*/
public static final String score_result_code = "score_result_code";
/**
* 登记时间
*/
public static final String input_time = "input_time";
/**
* 更新时间
*/
public static final String update_time = "update_time";
}