Commit 80d27852 by 王祖波

log

parent 8b987f9e
...@@ -285,11 +285,12 @@ public class ContactLogServiceImpl implements ContactLogService { ...@@ -285,11 +285,12 @@ public class ContactLogServiceImpl implements ContactLogService {
try { try {
ServiceResponse<List<String>> crowdTypeResponse = objectivesManageApiService.getMemberCrowdType(memberId, clerkId, enterpriseId); ServiceResponse<List<String>> crowdTypeResponse = objectivesManageApiService.getMemberCrowdType(memberId, clerkId, enterpriseId);
List<String> result = crowdTypeResponse.getResult(); List<String> result = crowdTypeResponse.getResult();
logger.info("机会人群数据:{}",JSON.toJSONString(result)); String jsonString = JSON.toJSONString(result);
logger.info("机会人群数据:{}", jsonString);
if (CollectionUtils.isNotEmpty(result)) { if (CollectionUtils.isNotEmpty(result)) {
TabContactLog modifyContactLog = new TabContactLog(); TabContactLog modifyContactLog = new TabContactLog();
modifyContactLog.setLogId(logId); modifyContactLog.setLogId(logId);
modifyContactLog.setBizData(JSON.toJSONString(result)); modifyContactLog.setBizData(jsonString);
contactLogMapper.update(modifyContactLog); contactLogMapper.update(modifyContactLog);
} }
} catch (Exception e) { } catch (Exception e) {
......
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