Skip to content

Commit

Permalink
关联景区评论关联表 关联用户评论表
Browse files Browse the repository at this point in the history
  • Loading branch information
niziming committed Jul 12, 2022
1 parent ebb23ee commit 298d8d9
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ public class RelaUserCommentsController extends BaseController {

@GetMapping
@ApiOperation("关联用户评论表page查询")
@ApiImplicitParams({
@ApiImplicitParam(name = "page", value = "当前页数", defaultValue = "1"),
@ApiImplicitParam(name = "size", value = "每页个数", defaultValue = "10"),
@ApiImplicitParam(name = "orderByColumn", value = "排序字段"),
@ApiImplicitParam(name = "isDesc", value = "是否降序")
})
// @ApiImplicitParams({
// @ApiImplicitParam(name = "page", value = "当前页数", defaultValue = "1"),
// @ApiImplicitParam(name = "size", value = "每页个数", defaultValue = "10"),
// @ApiImplicitParam(name = "orderByColumn", value = "排序字段"),
// @ApiImplicitParam(name = "isDesc", value = "是否降序")
// })
public ResResult<IPage<RelaUserCommentsVO>> getByPage(@Validated RelaUserCommentsDTO relaUserComments) {
// TODO 分页查询
IPage<RelaUserCommentsVO> page = relaUserCommentsService.selectByPage(getPage(), relaUserComments);
Expand Down

0 comments on commit 298d8d9

Please sign in to comment.