|
|
@@ -352,7 +352,7 @@ public class ReportService extends ServiceImpl<ReportMapper, Report> {
|
|
|
for (SelectAssoReportArticleVO reportArticleVO : reportArticleVOS) {
|
|
|
ExportReportDetailVO detailVO = new ExportReportDetailVO();
|
|
|
detailVO.setTitle(i + "、" + reportArticleVO.getTitle());
|
|
|
- detailVO.setDigest(reportArticleVO.getDigest());
|
|
|
+ detailVO.setDigest(reportArticleVO.getOldContent());
|
|
|
String htmlLink = "<a href='" + reportArticleVO.getArticleUrl() + "'>" + reportArticleVO.getArticleUrl() + "</a>";
|
|
|
detailVO.setArticle_url(htmlLink);
|
|
|
detailVOS.add(detailVO);
|
|
|
@@ -554,7 +554,7 @@ public class ReportService extends ServiceImpl<ReportMapper, Report> {
|
|
|
for (OneClickExportVO reportArticleVO : reportArticleVOS) {
|
|
|
ExportReportDetailVO detailVO = new ExportReportDetailVO();
|
|
|
detailVO.setTitle(i + "、" + reportArticleVO.getTitle());
|
|
|
- detailVO.setDigest(reportArticleVO.getDigest());
|
|
|
+ detailVO.setDigest(reportArticleVO.getOldContent());
|
|
|
String htmlLink = "<a href='" + reportArticleVO.getArticleUrl() + "'>" + reportArticleVO.getArticleUrl() + "</a>";
|
|
|
detailVO.setArticle_url(htmlLink);
|
|
|
detailVOS.add(detailVO);
|