GET api/FinanceWork/QueryContract2
查询合同待开票
Request Information
URI Parameters
None.
Body Parameters
DAL.AllInOneQueryParam| Name | Description | Type | Additional information |
|---|---|---|---|
| Value | string |
None. |
|
| StartIndex |
获取起始记录 从0开始 |
integer |
None. |
| Page |
起始页码 从1开始 |
integer |
None. |
| Rows |
每页记录数,默认10 |
integer |
None. |
| Order |
排序方式,默认升序(asc) |
string |
None. |
| sort |
用来排序的字段 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Value": "sample string 1",
"StartIndex": 3,
"Page": 2,
"Rows": 3,
"Order": "sample string 4",
"sort": "sample string 5"
}
application/xml, text/xml
Sample:
<AllInOneQueryParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL"> <Order>sample string 4</Order> <Page>2</Page> <Rows>3</Rows> <sort>sample string 5</sort> <Value>sample string 1</Value> </AllInOneQueryParam>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DAL.HandleResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccessful |
操作结果,默认为true |
boolean |
None. |
| ResultMsg |
说明 |
string |
None. |
| ResultData |
返回值 |
string |
None. |
| ResultObj |
返回值对象 |
Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccessful": true,
"ResultMsg": "sample string 2",
"ResultData": "sample string 3",
"ResultObj": {}
}
application/xml, text/xml
Sample:
<HandleResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL"> <IsSuccessful>true</IsSuccessful> <ResultData>sample string 3</ResultData> <ResultMsg>sample string 2</ResultMsg> <ResultObj /> </HandleResult>