台桌列表 不分页

This commit is contained in:
2024-03-12 10:49:43 +08:00
parent 1d927f7fd2
commit 0dfa182c70
3 changed files with 20 additions and 2 deletions

View File

@@ -54,8 +54,8 @@ public class TbShopTableController {
@GetMapping
@Log("查询/shop/table")
@ApiOperation("查询/shop/table")
public ResponseEntity<Object> queryTbShopTable(TbShopTableQueryCriteria criteria, Pageable pageable){
return new ResponseEntity<>(tbShopTableService.queryAll(criteria,pageable),HttpStatus.OK);
public ResponseEntity<Object> queryTbShopTable(TbShopTableQueryCriteria criteria){
return new ResponseEntity<>(tbShopTableService.queryAllNoPage(criteria),HttpStatus.OK);
}
@PostMapping