update 合并 dev 处理差异

This commit is contained in:
疯狂的狮子li
2021-12-28 10:38:25 +08:00
parent 948ad86049
commit 261d9f8ebc
7 changed files with 21 additions and 29 deletions

View File

@ -65,7 +65,7 @@ public class TestDemoController extends BaseController {
@ApiOperation("自定义分页查询")
@SaCheckPermission("demo:demo:list")
@GetMapping("/page")
public TableDataInfo<TestDemoVo> page(@Validated(QueryGroup.class) TestDemoBo bo) {
public TableDataInfo<TestDemoVo> page(@Validated(QueryGroup.class) TestDemoBo bo, PageQuery pageQuery) {
return iTestDemoService.customPageList(bo, pageQuery);
}