Merge branch 'rymcu:master' into master
This commit is contained in:
commit
9abdf94d7b
@ -67,8 +67,11 @@ public class ArticleController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/{idArticle}/comments")
|
@GetMapping("/{idArticle}/comments")
|
||||||
public GlobalResult<List<CommentDTO>> commons(@PathVariable Integer idArticle) {
|
public GlobalResult<PageInfo<CommentDTO>> commons(@PathVariable Integer idArticle, @RequestParam(defaultValue = "1") Integer page, @RequestParam(defaultValue = "10") Integer rows) {
|
||||||
return GlobalResultGenerator.genSuccessResult(commentService.getArticleComments(idArticle));
|
PageHelper.startPage(page, rows);
|
||||||
|
List<CommentDTO> list = commentService.getArticleComments(idArticle);
|
||||||
|
PageInfo<CommentDTO> pageInfo = new PageInfo<>(list);
|
||||||
|
return GlobalResultGenerator.genSuccessResult(pageInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/drafts")
|
@GetMapping("/drafts")
|
||||||
|
Loading…
Reference in New Issue
Block a user