Merge pull request 'yingdesai' (#34) from yingdesai into dev
Reviewed-on: http://192.168.2.237:3000/root/kangarooDataCenterV3/pulls/34
This commit is contained in:
commit
056cbfd0e8
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,8 @@
|
||||||
package com.hzya.frame.seeyon.service;
|
package com.hzya.frame.seeyon.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
||||||
import com.hzya.frame.seeyon.entity.OAWorkflowEventDataEntity;
|
|
||||||
import com.hzya.frame.seeyon.entity.SeeyonEntity;
|
|
||||||
import com.hzya.frame.seeyon.service.impl.CfsLogServiceImpl;
|
|
||||||
import com.hzya.frame.web.entity.BaseResult;
|
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 致远OA接口类
|
* 致远OA接口类
|
||||||
* @author 👻👻👻👻👻👻👻👻👻👻 gjh
|
* @author 👻👻👻👻👻👻👻👻👻👻 gjh
|
||||||
|
|
Loading…
Reference in New Issue