|
|
@ -178,7 +178,9 @@ public class IcComplaintsServiceImpl extends BaseServiceImpl<IcComplaintsDao, Ic |
|
|
|
entityList.forEach(entity -> { |
|
|
|
result.forEach(dto -> { |
|
|
|
if (entity.getId().equals(dto.getId())) { |
|
|
|
dto.setImgs(entity.getImgs().split(",")); |
|
|
|
if(StringUtils.isNotEmpty(entity.getImgs())){ |
|
|
|
dto.setImgs(entity.getImgs().split(",")); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|