update 删除重复依赖 补全演示demo注解参数

This commit is contained in:
疯狂的狮子li
2021-10-26 19:09:50 +08:00
parent 61375c4bbb
commit 3bf96c6cd7
2 changed files with 1 additions and 7 deletions

View File

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