Commit 9347eb9f by qwmqiuwenmin

fix

parent 8ba8928e
......@@ -60,7 +60,7 @@ public class FriendClerkSyncOperation implements BaseSyncOperation {
dealLog.setDataType(PreDealTypeEnum.self_friend.getVal());
dealLog.setStatusFlag(0);
dealLog.setTaskId(dataPre.getTaskId());
dealLog.setDataContent(JSONObject.toJSONString(dto));
dealLog.setDataContent(dto);
dealLog.setWxEnterpriseId(wxEnterpriseId);
return dealLog;
}).collect(Collectors.toList());
......@@ -78,7 +78,7 @@ public class FriendClerkSyncOperation implements BaseSyncOperation {
dealLog.setDataType(PreDealTypeEnum.friend.getVal());
dealLog.setStatusFlag(0);
dealLog.setTaskId(dataPre.getTaskId());
dealLog.setDataContent(JSONObject.toJSONString(dto));
dealLog.setDataContent(dto);
dealLog.setWxEnterpriseId(wxEnterpriseId);
return dealLog;
}).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment