小程序叫号相关
This commit is contained in:
@@ -30,4 +30,8 @@ public class TakeNumberDTO extends BaseCallTableDTO{
|
||||
* 姓名
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* openId
|
||||
*/
|
||||
private String openId;
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
package com.czg.account.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
*/
|
||||
@Data
|
||||
public class CallQueueInfoVO {
|
||||
/**
|
||||
* 叫号队列id,queueId
|
||||
*/
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user