POST api/hotel/order/summary

查询酒店订单概要

Request Information

URI Parameters

None.

Body Parameters

查询订单模型

BookingSummaryRQContract
NameDescriptionTypeAdditional information
staydatefrom

停留开始时间

date

Required

staydateto

停留结束时间

date

Required

bookdatefrom

预定开始时间

date

Required

bookdateto

预定结束时间

date

Required

Request Formats

application/json, text/json

Sample:
{
  "staydatefrom": "2024-12-23T20:02:34.2066834+08:00",
  "staydateto": "2024-12-23T20:02:34.2066834+08:00",
  "bookdatefrom": "2024-12-23T20:02:34.2066834+08:00",
  "bookdateto": "2024-12-23T20:02:34.2066834+08:00"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BookingSummaryRQContract'.

Response Information

Resource Description

查询酒店订单概要

ReturnResultOfString
NameDescriptionTypeAdditional information
data

string

None.

code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": "sample string 1",
  "code": 2,
  "message": "sample string 3"
}