apzl_leasing/src_jbo/jbo/oti/RC_CALLBACK_LOG.java
2023-08-25 16:41:21 +08:00

47 lines
1.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package jbo.oti;
/**
* 北财风控中台评分反欺诈结果推送日志表 rc_score_result_log
*/
public interface RC_CALLBACK_LOG {
/**
* 业务类型<br><br>
* 代表本类映射的BizObjectClass
*/
public static final String CLASS_NAME = "jbo.oti.RC_CALLBACK_LOG";
/**
* id`
* STRING(20)<br>
*/
public static final String id = "id";
public static final String callback_id = "callback_id";
/**
* 业务申请编号
*/
public static final String project_no = "project_no";
/**
* 推送结果类型:评分结果 score, 反欺诈 fraud
*/
public static final String callback_type = "callback_type";
public static final String callback_data = "callback_data";
/**
* 处理状态0 返回结果待处理。1 返回结果已处理
*/
public static final String handle_sts = "handle_sts";
public static final String handle_value = "handle_value";
public static final String input_time = "input_time";
public static final String update_time = "update_time";
}