动态相关Bug

This commit is contained in:
pserimal
2023-06-29 20:59:32 +08:00
parent 6d464d7bb9
commit 380ae40da6
7 changed files with 25 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ public class ContentController {
@ApiOperation("查询动态列表")
public ResponseResult<PageInfo<HyContentInfoVO>> queryContentList(@RequestBody ContentQueryListDto dto) {
PageHelper.startPage(dto.getPageNum(), dto.getPageSize());
List<HyContentInfoVO> list = contentService.queryContentList(dto);
List<HyContentInfoVO> list = contentService.queryContentListToC(dto);
PageInfo<HyContentInfoVO> page = new PageInfo<>(list);
return ResponseResult.success(page);
}