POST api/Reconciliation/GetList
对账单列表
Request Information
URI Parameters
None.
Body Parameters
ApiPageOfReconciliationPageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| data | ReconciliationPageRequest |
None. |
|
| PageIndex |
页面起始项的索引,如{PageIndex=0,PageSize=10}:取0~9项(前十项);{PageIndex=10,PageSize=10}:取10~19项 |
integer |
None. |
| PageSize |
获取数量 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"data": {
"Keyword": "sample string 1",
"IsSign": true
},
"PageIndex": 1,
"PageSize": 2
}
application/xml, text/xml
Sample:
<ApiPageOfReconciliationPageRequestIoo5uFlX xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Request">
<PageIndex>1</PageIndex>
<PageSize>2</PageSize>
<data>
<IsSign>true</IsSign>
<Keyword>sample string 1</Keyword>
</data>
</ApiPageOfReconciliationPageRequestIoo5uFlX>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponsePageOfListOfReconciliationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| isLastPage | boolean |
None. |
|
| totalItem | integer |
None. |
|
| data | Collection of ReconciliationResponse |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"isLastPage": true,
"totalItem": 2,
"data": [
{
"Id": 1,
"CustomerName": "sample string 2",
"CustomerId": 3,
"CustomerPhone": "sample string 4",
"StartTime": "2025-12-26T13:15:30.8001053+08:00",
"EndTime": "2025-12-26T13:15:30.8001053+08:00",
"CreateTime": "2025-12-26T13:15:30.8001053+08:00",
"CreateTimeStr": "2025-12-26",
"StartTimeStr": "2025-12-26",
"EndTimeStr": "2025-12-26",
"Sign": "sample string 7",
"IsSign": true,
"ShareCode": "sample string 8",
"SignTime": "2025-12-26T13:15:30.8001053+08:00"
},
{
"Id": 1,
"CustomerName": "sample string 2",
"CustomerId": 3,
"CustomerPhone": "sample string 4",
"StartTime": "2025-12-26T13:15:30.8001053+08:00",
"EndTime": "2025-12-26T13:15:30.8001053+08:00",
"CreateTime": "2025-12-26T13:15:30.8001053+08:00",
"CreateTimeStr": "2025-12-26",
"StartTimeStr": "2025-12-26",
"EndTimeStr": "2025-12-26",
"Sign": "sample string 7",
"IsSign": true,
"ShareCode": "sample string 8",
"SignTime": "2025-12-26T13:15:30.8001053+08:00"
}
],
"errcode": "sample string 3",
"errmsg": "sample string 4"
}
application/xml, text/xml
Sample:
<ResponsePageOfArrayOfReconciliationResponseUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
<errcode>sample string 3</errcode>
<errmsg>sample string 4</errmsg>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
<d2p1:ReconciliationResponse>
<d2p1:CreateTime>2025-12-26T13:15:30.8001053+08:00</d2p1:CreateTime>
<d2p1:CustomerId>3</d2p1:CustomerId>
<d2p1:CustomerName>sample string 2</d2p1:CustomerName>
<d2p1:CustomerPhone>sample string 4</d2p1:CustomerPhone>
<d2p1:EndTime>2025-12-26T13:15:30.8001053+08:00</d2p1:EndTime>
<d2p1:Id>1</d2p1:Id>
<d2p1:ShareCode>sample string 8</d2p1:ShareCode>
<d2p1:Sign>sample string 7</d2p1:Sign>
<d2p1:SignTime>2025-12-26T13:15:30.8001053+08:00</d2p1:SignTime>
<d2p1:StartTime>2025-12-26T13:15:30.8001053+08:00</d2p1:StartTime>
</d2p1:ReconciliationResponse>
<d2p1:ReconciliationResponse>
<d2p1:CreateTime>2025-12-26T13:15:30.8001053+08:00</d2p1:CreateTime>
<d2p1:CustomerId>3</d2p1:CustomerId>
<d2p1:CustomerName>sample string 2</d2p1:CustomerName>
<d2p1:CustomerPhone>sample string 4</d2p1:CustomerPhone>
<d2p1:EndTime>2025-12-26T13:15:30.8001053+08:00</d2p1:EndTime>
<d2p1:Id>1</d2p1:Id>
<d2p1:ShareCode>sample string 8</d2p1:ShareCode>
<d2p1:Sign>sample string 7</d2p1:Sign>
<d2p1:SignTime>2025-12-26T13:15:30.8001053+08:00</d2p1:SignTime>
<d2p1:StartTime>2025-12-26T13:15:30.8001053+08:00</d2p1:StartTime>
</d2p1:ReconciliationResponse>
</data>
<isLastPage>true</isLastPage>
<totalItem>2</totalItem>
</ResponsePageOfArrayOfReconciliationResponseUJ8Augit>