Commit 456b8938 by fudahua

Merge branch 'developer' into 'master'

会员标签同步-同步状态变更

See merge request !116
parents 804b58a8 db72549b
...@@ -540,6 +540,12 @@ public class QywxTagApiServiceImpl implements QywxTagApiService { ...@@ -540,6 +540,12 @@ public class QywxTagApiServiceImpl implements QywxTagApiService {
//商户下设置同步的企业微信标签keys //商户下设置同步的企业微信标签keys
Set<String> entQywxTagSyncKeys = syncTagFormat.getEntQywxTagKeysMap().get(enterpriseId); Set<String> entQywxTagSyncKeys = syncTagFormat.getEntQywxTagKeysMap().get(enterpriseId);
if (CollectionUtils.isEmpty(entQywxTagSyncKeys)) {
logger.info("该商户下没有标签");
resp.setCode(6);
resp.setMessage("该商户下没有标签");
return resp;
}
//同步好友 //同步好友
externalTagMap.forEach((wxUserId, haveTagKes) -> { externalTagMap.forEach((wxUserId, haveTagKes) -> {
//该用户在该商户下打的标签 //该用户在该商户下打的标签
......
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