**請求方式:** GET
**請求地址:** `/taxi.php/invoiceHistroy`
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| uuid| String| yes | 用戶uuid|
|page|Integer|yes|頁數|
|number|Integer|no|每頁條數 默認10|
**返回信息**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| create_time| String| yes |開票時間|
| status| int| yes |開票狀態 1 已開票|
| money| int| yes |發票金額|
| invoice_no| String| yes |曹操專車發票訂單號|
| order_ids| String| yes |開票成功的訂單號|
**返回示例:**
```
{
"errcode": 0,
"errmsg": "ok",
"data": [
{
"id": 2,
"create_time": "2020-07-11 18:00:13",
"status": 1,
"money": 24,
"invoice_no": "202007111800138193200790645",
"order_ids": "[\"20200711529528597\",\"20200711532029928\"]"
}
]
}