//HealthPost healthPost = healthPostService.findById(postId);
List<Gott> gotts = healthPostService.getGottsForHealthPost(postId, rows, page, sb);
List<GottDTO> gottDTOs = new ArrayList<GottDTO>();
for (Gott gott : gotts) {
GottDTO gDTO = new GottDTO();
gDTO.setGottId(gott.getGottId());
gDTO.setGottName(gott.getGottName());
gDTO.setPostId(postId);
gottDTOs.add(gDTO);
}
response.setPage(String.valueOf(page));
response.setRows(gottDTOs);
response.setTotal(sb.toString());