台桌接口修改

This commit is contained in:
张松 2025-02-19 15:21:11 +08:00
parent 2c76c76e29
commit 24792addfc
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class ShopTableServiceImpl extends ServiceImpl<ShopTableMapper, ShopTable
ShopTable shopTable = new ShopTable(); ShopTable shopTable = new ShopTable();
shopTable.setShopId(shopId); shopTable.setShopId(shopId);
shopTable.setName(name); shopTable.setName(name);
shopTable.setMaxCapacity(shopTableAddDTO.getCapacity()); shopTable.setMaxCapacity(shopTableAddDTO.getMaxCapacity());
shopTable.setAreaId(shopTableAddDTO.getAreaId()); shopTable.setAreaId(shopTableAddDTO.getAreaId());
shopTable.setStatus(ShopTableStatusEnum.CLOSED.getValue()); shopTable.setStatus(ShopTableStatusEnum.CLOSED.getValue());
tableArrayList.add(shopTable); tableArrayList.add(shopTable);