POST api/hotel/curx/invoice/list/{lang}
获取用户订单
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| lang | 
                         语言(zh-hk,en-us,zh-cn)  | 
                    string | 
                                 Required  | 
                
Body Parameters
AsHotelInvoiceRQContract| Name | Description | Type | Additional 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-11-04T18:51:53.2244405+08:00",
  "enddate": "2025-11-04T18:51:53.2244405+08:00",
  "authuser": {
    "userid": "sample string 1",
    "password": "sample string 2"
  }
}
        application/x-www-form-urlencoded
            Sample:
    
        
Response Information
Resource Description
获取用户订单
ReturnResultOfPageListOfAsHotelInvoiceRSContract| Name | Description | Type | Additional 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-11-04T18:51:53.2334642+08:00",
        "paytime": "2025-11-04T18:51:53.2334642+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-11-04T18:51:53.2334642+08:00",
        "paytime": "2025-11-04T18:51:53.2334642+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"
}