【update】分页查询的接口名改为page

This commit is contained in:
mzc5649
2021-04-09 09:11:14 +08:00
parent fd67747c58
commit 1697247323
@@ -60,7 +60,7 @@ public class ${entityName}Controller extends JeroController<${entityName}, I${en
*/ */
@AutoLog(value = "${tableVo.ftlDescription}-分页列表查询") @AutoLog(value = "${tableVo.ftlDescription}-分页列表查询")
@ApiOperation(value="${tableVo.ftlDescription}-分页列表查询", notes="${tableVo.ftlDescription}-分页列表查询") @ApiOperation(value="${tableVo.ftlDescription}-分页列表查询", notes="${tableVo.ftlDescription}-分页列表查询")
@GetMapping(value = "/list") @GetMapping(value = "/page")
public Result<?> queryPageList(${entityName} ${entityName?uncap_first}, public Result<?> queryPageList(${entityName} ${entityName?uncap_first},
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo, @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize, @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,