风控中台-esb日志增加字段
This commit is contained in:
parent
3b7bd36f4a
commit
52fd66e5b5
@ -859,9 +859,6 @@
|
||||
<attribute name="SOURCE_MACHINE_DATE" label="服务返回信息" type="STRING" length="32"/>
|
||||
<attribute name="INPUTTIME" label="记录时间" type="STRING" length="32"/>
|
||||
<attribute name="UPDATETIME" label="更新时间" type="STRING" length="32"/>
|
||||
<attribute name="RESULT_TIME" label="异步结果时间" type="STRING" length="32"/>
|
||||
<attribute name="INPUTUSERID" label="操作人" type="STRING" length="32"/>
|
||||
<attribute name="FLOW_NODE" label="操作节点" type="STRING" length="32"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -869,6 +866,23 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
<class name="RC_SCORE_LOG" label="评分查询记录" describe="评分查询记录" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="唯一标识" type="String" length="32" />
|
||||
<attribute name="GLOBAL_SEQ_NO" label="全局唯一标识" type="STRING" length="26" />
|
||||
<attribute name="INPUTUSERID" label="操作人" type="STRING" length="30"/>
|
||||
<attribute name="FLOW_NODE_NAME" label="流程节点" type="STRING" length="50"/>
|
||||
<attribute name="INPUTTIME" label="发起评分时间" type="STRING" length="7"/>
|
||||
<attribute name="RET_CODE" label="服务返回码" type="STRING" length="50"/>
|
||||
<attribute name="FLOW_UNID" label="流程id" type="STRING" length="1"/>
|
||||
<attribute name="RESULT_TIME" label="异步结果时间" type="STRING" length="50"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="RC_SCORE_LOG"/>
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
<class name="RC_CAR_MODEL" label="车辆信息库" describe="北财车型" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="唯一标识" type="String" length="32" />
|
||||
|
||||
@ -59,17 +59,5 @@ public interface ESB_LOG {
|
||||
* 记录时间 STRING(100)<br>
|
||||
*/
|
||||
public static final String UPDATETIME = "UPDATETIME";
|
||||
/**
|
||||
* 异步返回结果时间 STRING(100)<br>
|
||||
*/
|
||||
public static final String RESULT_TIME = "RESULT_TIME";
|
||||
/**
|
||||
* 查询人 STRING(100)<br>
|
||||
*/
|
||||
public static final String INPUTUSERID = "INPUTUSERID";
|
||||
/**
|
||||
* 流程节点 STRING(100)<br>
|
||||
*/
|
||||
public static final String FLOW_NODE = "FLOW_NODE";
|
||||
|
||||
}
|
||||
44
src_jbo/jbo/oti/RC_SCORE_LOG.java
Normal file
44
src_jbo/jbo/oti/RC_SCORE_LOG.java
Normal file
@ -0,0 +1,44 @@
|
||||
package jbo.oti;
|
||||
|
||||
/**
|
||||
* esb发送记录表 - JBO命名常量类<br><br>
|
||||
* Note: This file is generated by ADE tools, <em>dont</em> modify it.<br>
|
||||
|
||||
*/
|
||||
public interface RC_SCORE_LOG {
|
||||
/**
|
||||
* 短信发送记录表<br><br>
|
||||
* 代表本类映射的BizObjectClass
|
||||
*/
|
||||
public static final String CLASS_NAME = "jbo.oti.RC_SCORE_LOG";
|
||||
/**
|
||||
* 唯一标识 LONG(64)<br>
|
||||
*/
|
||||
public static final String ID = "ID";
|
||||
/**
|
||||
* 全局唯一标识 LONG(64)<br>
|
||||
*/
|
||||
public static final String GLOBAL_SEQ_NO = "GLOBAL_SEQ_NO";
|
||||
/**
|
||||
* 全局唯一标识 LONG(64)<br>
|
||||
*/
|
||||
public static final String FLOW_NODE_NAME = "FLOW_NODE_NAME";
|
||||
/**
|
||||
* 交易码(15)<br>
|
||||
*/
|
||||
public static final String FLOW_UNID = "FLOW_UNID";
|
||||
/**
|
||||
* 服务id STRING(990)<br>
|
||||
*/
|
||||
public static final String RESULT_TIME = "RESULT_TIME";
|
||||
/**
|
||||
* 通讯状态 STRING(20)<br>
|
||||
*/
|
||||
public static final String RET_CODE = "RET_CODE";
|
||||
|
||||
public static final String INPUTUSERID = "INPUTUSERID";
|
||||
|
||||
public static final String INPUTTIME = "INPUTTIME";
|
||||
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user