Commit 80d27852 by 王祖波

log

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