风控中台-esb日志增加字段

This commit is contained in:
zhanglei@ap-leasing.com.cn 2023-09-22 09:08:44 +08:00
parent fa8a56fb50
commit 3b7bd36f4a
2 changed files with 15 additions and 0 deletions

View File

@ -859,6 +859,9 @@
<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>

View File

@ -59,5 +59,17 @@ 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";
}