POST Api/Service/GetPaymentRecords/{PageNumber}/{PageSize}
支付记录检索
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber |
页索引 |
integer |
Required |
| PageSize |
页大小 |
integer |
Required |
Body Parameters
检索模型
SpeedPower.Utility.Models.Service.MILogs.SearchPaymentRecordModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteIds |
站点ID列表 |
Collection of string |
None. |
| OrderExternalNumber |
外部订单号 |
string |
String length: inclusive between 0 and 128 |
| PurchaseOrderNumber |
采购单号 |
string |
String length: inclusive between 0 and 128 |
| PaymentTag |
支付路由(账户) |
string |
String length: inclusive between 0 and 20 |
| PaymentCode |
支付源代码 |
string |
String length: inclusive between 0 and 20 |
| PaymentAccount |
支付账户 |
string |
String length: inclusive between 0 and 128 |
| TransactionId |
交易流水号 |
string |
String length: inclusive between 0 and 200 |
| Creater |
创建者 |
string |
String length: inclusive between 0 and 128 |
| MinDateTime |
最小查询时间 |
date |
None. |
| MaxDateTime |
最大查询时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"SiteIds": [
"sample string 1",
"sample string 2"
],
"OrderExternalNumber": "sample string 1",
"PurchaseOrderNumber": "sample string 2",
"PaymentTag": "sample string 3",
"PaymentCode": "sample string 4",
"PaymentAccount": "sample string 5",
"TransactionId": "sample string 6",
"Creater": "sample string 7",
"MinDateTime": "2025-11-07T07:20:39.0578765+08:00",
"MaxDateTime": "2025-11-07T07:20:39.0578765+08:00"
}
Response Information
Resource Description
支付记录检索
SpeedPower.Utility.Models.Helper.ResultDataGridOfSystem.Collections.Generic.IEnumerableOfSpeedPower.Utility.Models.Service.MILogs.GetPaymentRecordModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RowsCount | integer |
None. |
|
| Contents | Collection of SpeedPower.Utility.Models.Service.MILogs.GetPaymentRecordModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"RowsCount": 1,
"Contents": [
{
"ID": "fe9691a7-30f3-423c-9624-267aeae4eac6",
"Time": "2025-11-07T07:20:39.0578765+08:00",
"CompanyId": "sample string 3",
"SiteId": "sample string 4",
"OrderExternalNumber": "sample string 5",
"PurchaseOrderNumber": "sample string 6",
"PaymentTag": "sample string 7",
"PaymentCode": "sample string 8",
"PaymentAccount": "sample string 9",
"PayPrice": 10.1,
"TransactionId": "sample string 11",
"Remarks": "sample string 12",
"Creater": "sample string 13"
},
{
"ID": "fe9691a7-30f3-423c-9624-267aeae4eac6",
"Time": "2025-11-07T07:20:39.0578765+08:00",
"CompanyId": "sample string 3",
"SiteId": "sample string 4",
"OrderExternalNumber": "sample string 5",
"PurchaseOrderNumber": "sample string 6",
"PaymentTag": "sample string 7",
"PaymentCode": "sample string 8",
"PaymentAccount": "sample string 9",
"PayPrice": 10.1,
"TransactionId": "sample string 11",
"Remarks": "sample string 12",
"Creater": "sample string 13"
}
]
}