POST Api/Invoke/ExportOrderTicketReconcileds
导出订单票号数据表(最大15天)
Request Information
URI Parameters
None.
Body Parameters
检索模型
SpeedPower.Utility.Models.Project.Orders.Service.SearchOrderReconciledModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MinDateTime |
最小查询时间 |
date |
Required |
| MaxDateTime |
最大查询时间 |
date |
Required |
| SiteIds |
站点ID列表 |
Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MinDateTime": "2025-11-01T21:53:50.9094751+08:00",
"MaxDateTime": "2025-11-01T21:53:50.9094751+08:00",
"SiteIds": [
"sample string 1",
"sample string 2"
]
}
Response Information
Resource Description
导出订单票号数据表(最大15天)
Collection of SpeedPower.Utility.Models.Project.Orders.Service.ExportOrderTicketReconciledModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
乘客姓名 |
string |
Required String length: inclusive between 0 and 128 |
| CardType |
证件类型 |
SpeedPower.Utility.Models.Service.Eterms.Enums.PassengerCardType |
None. |
| CardNo |
证件号 |
string |
Required String length: inclusive between 0 and 50 |
| TicketNumber |
票号 |
string |
Required String length: inclusive between 0 and 20 |
| ID |
订单ID |
globally unique identifier |
None. |
| OrderExternalNumber |
外部订单号 |
string |
Required String length: inclusive between 0 and 128 |
Response Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"CardType": 0,
"CardNo": "sample string 2",
"TicketNumber": "sample string 3",
"ID": "8278bfa3-be20-4b35-a25b-284e17428515",
"OrderExternalNumber": "sample string 5"
},
{
"Name": "sample string 1",
"CardType": 0,
"CardNo": "sample string 2",
"TicketNumber": "sample string 3",
"ID": "8278bfa3-be20-4b35-a25b-284e17428515",
"OrderExternalNumber": "sample string 5"
}
]