文档
测试

座位预约

POST
localhost:80/seatorder/appointment

请求头

参数名
类型
描述
必填
token
string
jwt 检查是否登录
必填

请求/响应

请求 ``` { "roomId":101, "seatId":1, "startDate":"2022-01-02 15:37", "endDate":"2022-01-02 15:40" } ``` 响应 ``` { "success": true, "code": 200, "message": "成功", "data": { "entity": { "id": 1, "roomId": 101, "seatId": 1, "stuNo": 18060619106, "orderNo": "20220413152653006", "startDate": "2022-04-13 15:26", "endDate": "2022-04-13 15:30", "status": 0, "createDate": "2022-04-13 15:26" } } } ```