排队取号返回叫号信息

This commit is contained in:
2024-09-18 10:31:52 +08:00
parent 1cd6bca4ba
commit 510372ff46

View File

@@ -182,7 +182,12 @@ public class TbCallServiceImpl implements TbCallService {
callQueue.setShopId(shopInfo.getId());
callQueue.setShopName(shopInfo.getShopName());
return callQueueService.save(callQueue);
callQueueService.save(callQueue);
HashMap<String, Object> data = new HashMap<>();
data.put("tableName", callTable.getName());
data.put("tableNote", callTable.getNote());
data.put("callNum", callQueue.getCallNum());
return data;
}
@Override