|
|
|
@@ -205,7 +205,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService { |
|
|
|
if (entity != null) { |
|
|
|
if (entity.getTagId() != null) { |
|
|
|
WxCUserTags uTag = wxCUserTagsMapper.selectByPrimaryKey(entity.getTagId()); |
|
|
|
if (StringUtils.isNotBlank(uTag.getTags())) { |
|
|
|
if (uTag != null && StringUtils.isNotBlank(uTag.getTags())) { |
|
|
|
List<Long> ids = JSONObject.parseArray(uTag.getTags(), Long.class); |
|
|
|
if (!ids.isEmpty()) { |
|
|
|
WxTags wxTagsQ = new WxTags(); |
|
|
|
|