POST api/hotel/curx/invoice/list/{lang}

获取用户订单

Request Information

URI Parameters

NameDescriptionTypeAdditional information
lang

语言(zh-hk,en-us,zh-cn)

string

Required

Body Parameters

AsHotelInvoiceRQContract
NameDescriptionTypeAdditional information
pageindex

integer

None.

pagesize

integer

None.

startdate

date

None.

enddate

date

None.

authuser

用户身份信息

AsUserContract

None.

Request Formats

application/json, text/json

Sample:
{
  "pageindex": 1,
  "pagesize": 2,
  "startdate": "2025-04-24T16:57:53.5925027+08:00",
  "enddate": "2025-04-24T16:57:53.5925027+08:00",
  "authuser": {
    "userid": "sample string 1",
    "password": "sample string 2"
  }
}

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 'AsHotelInvoiceRQContract'.

Response Information

Resource Description

获取用户订单

ReturnResultOfPageListOfAsHotelInvoiceRSContract
NameDescriptionTypeAdditional information
data

PageListOfAsHotelInvoiceRSContract

None.

code

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

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "total_count": 1,
    "page": 2,
    "page_size": 3,
    "data_list": [
      {
        "bookdate": "2025-04-24T16:57:53.6005255+08:00",
        "paytime": "2025-04-24T16:57:53.6005255+08:00",
        "orderno": "sample string 2",
        "bookcode": "sample string 3",
        "hotelname": "sample string 4",
        "roomname": "sample string 5",
        "roomcount": 6,
        "manager": "sample string 7",
        "paytype": 8,
        "bookstatus": 9,
        "operuser": "sample string 10",
        "paycreditlimit": 11.0,
        "remainlimit": 12.0,
        "descript": "sample string 13"
      },
      {
        "bookdate": "2025-04-24T16:57:53.6005255+08:00",
        "paytime": "2025-04-24T16:57:53.6005255+08:00",
        "orderno": "sample string 2",
        "bookcode": "sample string 3",
        "hotelname": "sample string 4",
        "roomname": "sample string 5",
        "roomcount": 6,
        "manager": "sample string 7",
        "paytype": 8,
        "bookstatus": 9,
        "operuser": "sample string 10",
        "paycreditlimit": 11.0,
        "remainlimit": 12.0,
        "descript": "sample string 13"
      }
    ],
    "page_count": 1
  },
  "code": 1,
  "message": "sample string 2"
}