|
|
|
@@ -446,7 +446,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService,IExc |
|
|
|
}); |
|
|
|
if(!tagIdList.isEmpty()){ |
|
|
|
String tagCodes = JSON.toJSONString(tagIdList); |
|
|
|
List<Long> tagIds = wxCUserTagsMapper.findIdList(tenantEntity.getTenantId(),tagCodes); |
|
|
|
List<Long> tagIds = wxCUserTagsMapper.findIdList(tenantEntity.getFinalTenantId(),tagCodes); |
|
|
|
if(tagIds != null && tagIds.size() > 0){ |
|
|
|
dto.setTagIds(tagIds); |
|
|
|
}else{ |
|
|
|
@@ -543,7 +543,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService,IExc |
|
|
|
if(wxCUserBasicInfoDto.getId() != null && wxCUserBasicInfoDto.getId() == -999l){ |
|
|
|
return 0l; |
|
|
|
} |
|
|
|
wxCUserBasicInfoDto.setTenantId(tenantEntity.getFinalTenantId()); |
|
|
|
wxCUserBasicInfoDto.setTenantId(tenantEntity.getTenantId()); |
|
|
|
wxCUserBasicInfoDto.setFinalTenantId(tenantEntity.getFinalTenantId()); |
|
|
|
return wxCUserBasicInfoMapper.findCountByFilter(wxCUserBasicInfoDto); |
|
|
|
} |
|
|
|
@@ -554,7 +554,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService,IExc |
|
|
|
if(wxCUserBasicInfoDto.getId() != null && wxCUserBasicInfoDto.getId() == -999l){ |
|
|
|
return new ArrayList<WxCUserBasicInfo>(); |
|
|
|
} |
|
|
|
wxCUserBasicInfoDto.setTenantId(tenantEntity.getFinalTenantId()); |
|
|
|
wxCUserBasicInfoDto.setTenantId(tenantEntity.getTenantId()); |
|
|
|
wxCUserBasicInfoDto.setFinalTenantId(tenantEntity.getFinalTenantId()); |
|
|
|
return wxCUserBasicInfoMapper.findListByFilter(wxCUserBasicInfoDto); |
|
|
|
} |
|
|
|
|