Commit f4b6b4e4 by 墨竹

fix:空指针判断

parent b648137d
......@@ -715,6 +715,10 @@ public class QywxTagApiServiceImpl implements QywxTagApiService {
}).collect(Collectors.toList());
logger.info("会员打标签:{}", JSONObject.toJSONString(list));
if (CollectionUtils.isEmpty(list)) {
logger.info("会员打标签list为空");
return;
}
memberTagService.saveOrUpdateMemberTagHB(enterpriseId, list, memberId);
}
......
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