Просмотр исходного кода

/。 countByFilter

release_toaliyun_real
xhxu 4 лет назад
Родитель
Сommit
cf443cf64a
2 измененных файлов: 6 добавлений и 2 удалений
  1. +3
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCUserBasicInfoServiceImpl.java
  2. +3
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCUserTagsServiceImpl.java

+ 3
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCUserBasicInfoServiceImpl.java Просмотреть файл

@@ -442,8 +442,10 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService,IExc
if(!tagIdList.isEmpty()){
String tagCodes = JSON.toJSONString(tagIdList);
List<Long> tagIds = wxCUserTagsMapper.findIdList(tenantEntity.getTenantId(),tagCodes);
if(!tagIds.isEmpty()){
if(tagIds != null && tagIds.size() > 0){
dto.setTagIds(tagIds);
}else{
dto.setId(-999l);
}
}



+ 3
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCUserTagsServiceImpl.java Просмотреть файл

@@ -85,8 +85,10 @@ public class WxCUserTagsServiceImpl implements WxCUserTagsService {
}else{
WxCUserBasicInfoDto dto = new WxCUserBasicInfoDto();
dto.updateTenantInfo(tenantEntity);
if(userIds.size() > 0){
if(userIds != null && userIds.size() > 0){
dto.setIds(userIds);
}else{
dto.setId(-999l);
}
dto.setStartTime(startTime);
dto.setEndTime(endTime);


Загрузка…
Отмена
Сохранить