名称:酒店列表
接口:/merchant/meeting/hotelList
请求方式:post
参数名 | 类型 | 必填 | 说明 | 示例 |
---|---|---|---|---|
meetid | int | Y | 会议id | 18 |
说明
1.此方法需要登录
返回示例
{
"code": 200,
"message": "success",
"result": [
{
"id": 3, //酒店id
"title": "四季酒店", //酒店名字
"location": "上海市人民广场", //酒店位置
"room": [ //房间类型
{
"title": "大床房", //房间类型
"room_num": 5 //房间数量
},
{
"title": "大床房",
"room_num": 100
}
],
"notice": "请记得来~~~~", //酒店提示备注
"is_publish": false, //是否发布
"is_update": true //是否可以修改部分
},
{
"id": 4,
"title": "四季酒店",
"location": "上海市人民广场",
"room": [
{
"title": "大床房",
"room_num": 0
},
{
"title": "大床房",
"room_num": 0
}
],
"notice": "请记得来~~~~",
"is_publish": false,
"is_update": true
},
{
"id": 5,
"title": "四季酒店",
"location": "上海市人民广场",
"room": [
{
"title": "大床房",
"room_num": 0
},
{
"title": "大床房",
"room_num": 0
}
],
"notice": "请记得来~~~~",
"is_publish": false,
"is_update": true
}
]
}