小程序叫号相关

This commit is contained in:
张松
2025-03-20 14:53:08 +08:00
parent 8f46ce129e
commit baabf01e51
8 changed files with 220 additions and 8 deletions

View File

@@ -30,4 +30,8 @@ public class TakeNumberDTO extends BaseCallTableDTO{
* 姓名
*/
private String name;
/**
* openId
*/
private String openId;
}

View File

@@ -29,7 +29,7 @@ public interface CallTableService extends IService<CallTable> {
boolean updateInfo(Long shopId, UpdateCallQueueDTO updateCallQueueDTO);
Page<CallQueue> getQueue(Long shopId, Long callTableId, Integer state);
Page<CallQueue> getQueue(Long shopId, String openId, Long callTableId, Integer state);
Page<CallRecordVO> getCallRecord(Long shopId, Integer callTableId);
@@ -38,4 +38,6 @@ public interface CallTableService extends IService<CallTable> {
boolean updateConfig(Long shopId, UpdateConfigDTO configDTO);
boolean subMsg(CallSubMsgDTO subMsgDTO);
Object getStatus(Long shopId, String openId, Long queueId);
}

View File

@@ -0,0 +1,47 @@
package com.czg.account.vo;
import lombok.Data;
/**
* @author Administrator
*/
@Data
public class CallQueueInfoVO {
/**
* 叫号队列idqueueId
*/
private Long id;
/**
* 桌型名称
*/
private String tableName;
/**
* 桌型备注
*/
private String tableNote;
/**
* 等待人数
*/
private Integer waitingCount;
/**
* 等待时间
*/
private Integer waitTime;
/**
* -1已取消 0排队中 1叫号中 2已入座 3 已过号
*/
private Integer state;
/**
* 叫号号码
*/
private String callNum;
private String shopState;
/**
* 店铺名称
*/
private String shopName;
/**
* logo
*/
private String logo;
}