fix:88633
This commit is contained in:
+6
@@ -111,7 +111,10 @@ public class UnifiedTodoServiceImpl implements PushWorkflowIntegrationAPI {
|
||||
String reqJsonString = JSONObject.toJSONString(unifiedTodoVOList);
|
||||
String jsonString = JSONObject.toJSONString(unifiedTodoList);
|
||||
log.info("统一待办推送入参" + jsonString);
|
||||
long l = System.currentTimeMillis();
|
||||
push(ip + todoUrl,jsonString,reqJsonString, unifiedTodoList.get(0).getRequestname());
|
||||
long l1 = System.currentTimeMillis();
|
||||
System.out.println("===========================OA" + (l1-l));
|
||||
}catch (Exception e){
|
||||
log.error("统一待办推送异常",e);
|
||||
}
|
||||
@@ -120,8 +123,11 @@ public class UnifiedTodoServiceImpl implements PushWorkflowIntegrationAPI {
|
||||
@Override
|
||||
public void sendTodoTaskByFeiShu(List<UnifiedTodoVO> unifiedTodoVOList) {
|
||||
try {
|
||||
long l = System.currentTimeMillis();
|
||||
// 发送飞书
|
||||
sendFeiShuService.sendTodoTask(unifiedTodoVOList);
|
||||
long l1 = System.currentTimeMillis();
|
||||
System.out.println("===========================feishu" + (l1-l));
|
||||
}catch (Exception e){
|
||||
log.error("飞书发送异常",e.getMessage());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user