1.代客下单 挂单列表根据tableId获取

This commit is contained in:
2024-08-23 14:14:59 +08:00
parent e16d9dfcb1
commit 01d92b3812
3 changed files with 10 additions and 7 deletions

View File

@@ -116,9 +116,10 @@ public class TbPlaceController {
@Log("代客下单 查询购物车")
@ApiOperation("代客下单 查询购物车 /shop/table")
public ResponseEntity<Object> getPendingCart(
@RequestParam Integer shopId
@RequestParam Integer shopId,
@RequestParam String tableId
) {
return ResponseEntity.ok(tbShopTableService.getCar(shopId));
return ResponseEntity.ok(tbShopTableService.getCar(shopId, tableId));
}
@AnonymousAccess