Commit 59585e39 by 王祖波

刷新建联时间调整

parent b057f33f
...@@ -273,11 +273,10 @@ public class ContactLogServiceImpl implements ContactLogService { ...@@ -273,11 +273,10 @@ public class ContactLogServiceImpl implements ContactLogService {
DynamicDocDTO dynamicDocDTO = new DynamicDocDTO(); DynamicDocDTO dynamicDocDTO = new DynamicDocDTO();
dynamicDocDTO.setEnterpriseId(enterpriseId); dynamicDocDTO.setEnterpriseId(enterpriseId);
dynamicDocDTO.setColumnCategoryCode("member"); dynamicDocDTO.setColumnCategoryCode("member");
MemberDataDTO memberDataDTO = new MemberDataDTO(); JSONObject jsonObject = new JSONObject();
memberDataDTO.setMemberId(memberId); jsonObject.put("id", memberId);
memberDataDTO.setId(memberId); jsonObject.put("memberId", memberId);
memberDataDTO.setClerkContactTime(contactTime); jsonObject.put("clerkContactTime", contactTime);
JSONObject jsonObject = JSONObject.parseObject(JSON.toJSONString(memberDataDTO));
dynamicDocDTO.setDocJson(jsonObject); dynamicDocDTO.setDocJson(jsonObject);
dynamicDocDTO.setRefresh(Constant.FLAG_TRUE); dynamicDocDTO.setRefresh(Constant.FLAG_TRUE);
ESResponse res = esDataDynamicOperationApiService.updateDataSingle(dynamicDocDTO, false); ESResponse res = esDataDynamicOperationApiService.updateDataSingle(dynamicDocDTO, false);
......
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