**请求方式:** 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\"]"
}
]
}