郵箱:347952660@qq.com
手機:13824342636
電話:13824342636
地址:廣東省深圳市羅湖區筍崗東路3002號萬通大廈20F東
發布時間:2021-06-01 15:08:26 人氣:
深樂軒智慧IPTV HotelTV與Hotel PMS接口規范
HotelTV與Hotel PMS之間采用Rest API方式進行通信。接口定義入下:
一.入住客人名稱查詢
請求格式:http://pms-server-ip/api/xml/query_guest?RoomNo=_room_no_
例如: http://192.168.1.2/api/xml/query_guest?RoomNo=B212
當Hotel PMS收到該請求后,把查詢結果送回,格式如下:
<response>
<GuestList>
<GuestItem>
<GuestName>張三</GuestName>
<Gender>male</Gender>
</GuestItem>
<GuestItem>
<GuestName>李四</GuestName>
<Gender>female</Gender>
</GuestItem>
</GuestList>
</response>
說明:
GuestName:客戶名稱
Gender:性別,男性為male,女性為female。
二.賬單查詢
請求格式:http://pms-server-ip/api/xml/query_bill?RoomNo=_room_no_
例如: http://192.168.1.2/api/xml/query_bill?RoomNo=B212
當Hotel PMS收到該請求后,把查詢結果送回,格式如下:
<response>
<BillList>
<BillItem>
<GuestAccount>G00000003</GuestAccount>
<RoomNo>B212</RoomNo>
<BillTime>2015-01-03 13:00:00</BillTime>
<ProductName>餐飲</ProductName>
<ProductName_en>FoodCharge</ProductName_en>
<BillPrice>1024.78</BillPrice>
</BillItem>
<BillItem>
<GuestAccount>G00000003</GuestAccount>
<RoomNo>B212</RoomNo>
<BillTime>2015-01-03 10:00:08</BillTime>
<ProductName>房費</ProductName>
<ProductName_en>RoomCharge</ProductName_en>
<BillPrice>288</BillPrice>
</BillItem>
相關推薦