|
@ -381,7 +381,7 @@ public class CoverageServiceImpl implements CoverageService { |
|
|
return icEventEntities.stream() |
|
|
return icEventEntities.stream() |
|
|
.map(e -> new CoverageAnalisisDataListResultDTO( |
|
|
.map(e -> new CoverageAnalisisDataListResultDTO( |
|
|
e.getId(), categoryKey, isPage ? categoryDict.getCategoryName() : null, placeType, |
|
|
e.getId(), categoryKey, isPage ? categoryDict.getCategoryName() : null, placeType, |
|
|
e.getEventContent().length() < 51 ? e.getEventContent() : e.getEventContent().substring(NumConstant.ZERO, NumConstant.FIFTY).concat(StrConstant.ELLIPSIS), |
|
|
e.getEventContent().length() < 21 ? e.getEventContent() : e.getEventContent().substring(NumConstant.ZERO, 20).concat(StrConstant.ELLIPSIS), |
|
|
e.getLatitude(), e.getLongitude())) |
|
|
e.getLatitude(), e.getLongitude())) |
|
|
.collect(Collectors.toList()); |
|
|
.collect(Collectors.toList()); |
|
|
|
|
|
|
|
|