文档
测试

获取餐桌预约客户列表

POST
localhost:8080/insoApp/restaurant/info/getReservationList

接口描述

获取餐桌预约客户列表

请求参数

参数名
类型
描述
必填
tableId
int
餐桌id
必填
reservationDate
string
预约日期
必填

响应参数

参数名
类型
描述
必填
code
int
示例:0
必填
msg
string
示例:成功
必填
data
array
数据列表
必填
id
int
预约id
必填
appellation
string
称呼
必填
phoneNumber
string
联系电话
必填
reservationTime
object
预约时间
必填

响应示例

``` { "code": 0, "msg": "成功", "data": [ { "id": 1, "appellation": "珊珊", "phoneNumber": "15912346543", "reservationTime": null }, { "id": 2, "appellation": "珊珊", "phoneNumber": "15912346543", "reservationTime": "16:10:30" } ] } ```