调整获取文章列表接口

This commit is contained in:
TinyAnts 2022-09-14 11:50:32 +08:00
parent dcfa5bcf36
commit 8d778d94c5
2 changed files with 0 additions and 2 deletions

View File

@ -48,7 +48,6 @@ public class DecorateDataServiceImpl implements IDecorateDataService {
map.put("image", UrlUtil.toAbsoluteUrl(article.getImage()));
map.put("author", article.getAuthor());
map.put("visit", article.getVisit());
map.put("content", article.getContent());
map.put("createTime", TimeUtil.timestampToDate(article.getCreateTime()));
articleList.add(map);
}

View File

@ -72,7 +72,6 @@ public class IndexServiceImpl implements IIndexService {
map.put("image", UrlUtil.toAbsoluteUrl(article.getImage()));
map.put("author", article.getAuthor());
map.put("visit", article.getVisit());
map.put("content", article.getContent());
map.put("createTime", TimeUtil.timestampToDate(article.getCreateTime()));
articleList.add(map);
}