|
|
|
@@ -63,8 +63,8 @@ public class WxCUserTagsServiceImpl implements WxCUserTagsService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public WxCUserTags getById(Long id) { |
|
|
|
return wxCUserTagsMapper.selectById(id); |
|
|
|
public WxCUserTags getById(Long id,String tenantId) { |
|
|
|
return wxCUserTagsMapper.selectById(id,tenantId); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@@ -82,8 +82,8 @@ public class WxCUserTagsServiceImpl implements WxCUserTagsService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void deleteById(Long id) { |
|
|
|
wxCUserTagsMapper.deleteById(id); |
|
|
|
public void deleteById(Long id,String tenantId) { |
|
|
|
wxCUserTagsMapper.deleteById(id,tenantId); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@@ -761,7 +761,7 @@ public class WxCUserTagsServiceImpl implements WxCUserTagsService { |
|
|
|
WxCUserBasicInfo wxCUserBasicInfo = wxCUserBasicInfoMapper.selectById(cUserId,tenantinfo.getFinalTenantId()); |
|
|
|
WxCUserTags userTags = null; |
|
|
|
if (wxCUserBasicInfo.getTagId() != null) { |
|
|
|
userTags = getById(wxCUserBasicInfo.getTagId()); |
|
|
|
userTags = getById(wxCUserBasicInfo.getTagId(),wxCUserBasicInfo.getFinalTenantId()); |
|
|
|
} else { |
|
|
|
userTags = new WxCUserTags(); |
|
|
|
userTags.setTags("[]"); |
|
|
|
|