From 1cd6bca4ba5da4a8cd86f2f390c734e62b746f09 Mon Sep 17 00:00:00 2001 From: SongZhang <2064194730@qq.com> Date: Wed, 18 Sep 2024 10:22:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E5=8F=B7=E4=BF=AE=E6=94=B9=E5=8F=AB?= =?UTF-8?q?=E5=8F=B7=E7=8A=B6=E6=80=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/ysk/cashier/mybatis/mapper/TbCallQueueMapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/mapper/TbCallQueueMapper.java b/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/mapper/TbCallQueueMapper.java index f335a8a8..73892a93 100644 --- a/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/mapper/TbCallQueueMapper.java +++ b/eladmin-system/src/main/java/cn/ysk/cashier/mybatis/mapper/TbCallQueueMapper.java @@ -16,7 +16,7 @@ public interface TbCallQueueMapper extends BaseMapper { @Select("select a.*, b.note, TIMESTAMPDIFF(SECOND, a.create_time, NOW()) as since_at from tb_call_queue a " + "left join tb_call_table b on a.call_table_id=b.id " + - "where a.shop_id=#{shopId} and a.call_table_id=#{callTableId} and a.state in (3, 2)") + "where a.shop_id=#{shopId} and a.call_table_id=#{callTableId} and a.state in (3, 2, 1)") Page selectCallRecord(Integer shopId, Integer callTableId, Page objectPage); }