From e8731e1d4d26f5e3c8ec3437a75329ba7ed4424f Mon Sep 17 00:00:00 2001 From: wangw <1594593906@qq.com> Date: Thu, 26 Mar 2026 09:53:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AC=E6=A1=8C=20=E5=8F=B0=E6=A1=8C?= =?UTF-8?q?=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../czg/account/service/ShopTableService.java | 5 +++++ .../service/impl/ShopTableServiceImpl.java | 7 +++++++ .../impl/OrderInfoCustomServiceImpl.java | 21 ++++++++----------- 3 files changed, 21 insertions(+), 12 deletions(-) diff --git a/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopTableService.java b/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopTableService.java index cf00d44bc..dd7b7fa9f 100644 --- a/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopTableService.java +++ b/cash-common/cash-common-service/src/main/java/com/czg/account/service/ShopTableService.java @@ -33,6 +33,11 @@ public interface ShopTableService extends IService { Boolean updateInfo(long shopId, ShopTableDTO shopTableDTO); + /** + * 更新台桌状态 + */ + Boolean updateStatus(long shopId, Long tableId, String tableCode, String status); + Boolean clear(long shopId, ShopTableClearDTO shopTableClearDTO); Boolean expiredTable(long tableId); diff --git a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopTableServiceImpl.java b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopTableServiceImpl.java index 1f49e176e..09b9bd801 100644 --- a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopTableServiceImpl.java +++ b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/ShopTableServiceImpl.java @@ -278,6 +278,13 @@ public class ShopTableServiceImpl extends ServiceImpl