修改注释

This commit is contained in:
xiang2lin 2024-05-16 14:37:39 +08:00
parent d35f1026fa
commit cbe3294e02
1 changed files with 2 additions and 2 deletions

View File

@ -117,13 +117,13 @@ public class SeeyonExtPluginInitializer extends PluginBaseEntity {
IntegrationTaskLivingDetailsEntity taskDetailEntity = taskLivingDetailsService.get(id); IntegrationTaskLivingDetailsEntity taskDetailEntity = taskLivingDetailsService.get(id);
if (null != taskDetailEntity && JSONUtil.isTypeJSON(taskDetailEntity.getRootAppPk())){ if (null != taskDetailEntity && JSONUtil.isTypeJSON(taskDetailEntity.getRootAppPk())){
//拿到这张表的源系统ID //拿到这张表的源系统ID
//调用seeyon标准重试方法
JSONObject jsonObject = JSONObject.parseObject(taskDetailEntity.getRootAppPk()); JSONObject jsonObject = JSONObject.parseObject(taskDetailEntity.getRootAppPk());
Map<String,String>extData = new HashMap<>(); Map<String,String>extData = new HashMap<>();
extData.put("integration_task_living_details_id",id); extData.put("integration_task_living_details_id",id);//把日志id放到hzyaExtData中下游方法从这个对象里取
jsonObject.put("hzyaExtData",extData); jsonObject.put("hzyaExtData",extData);
JSONObject param = new JSONObject(); JSONObject param = new JSONObject();
param.put("jsonStr", JSON.toJSONString(jsonObject)); param.put("jsonStr", JSON.toJSONString(jsonObject));
//调用seeyon标准重试方法
seeyInterFace.thirdInterfaceSeeYonDefinitionRePush(param); seeyInterFace.thirdInterfaceSeeYonDefinitionRePush(param);
} }
} }