|
|
@@ -596,7 +596,7 @@ public class articleTweetAction extends BaseController implements ModelDriven<Ar
|
|
|
|
|
|
public String queryManageArticlePage() {
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
- IPage<ArticleListVo> result = articleTweetService.queryManageArticlesPage(keyWord, null, page, rows);
|
|
|
+ IPage<ArticleListVo> result = articleTweetService.queryManageArticlesPage(articleTweetDto.getKeyWord(), null, page, rows);
|
|
|
if (result.getPageList().size() > 0) {
|
|
|
String articleIds = StringUtils.join(result.getPageList().stream().map(ArticleListVo::getId).collect(Collectors.toList()), ",");
|
|
|
List<FileInfo> fileInfos = articleTweetService.queryList("and link_id in (" + articleIds + ")");
|