POST api/businessDeclarationForm/batchAddQuery
Request Information
URI Parameters
None.
Body Parameters
BusDeclFormAuditBatchAddDto| Name | Description | Type | Additional information |
|---|---|---|---|
| DnNo | string |
None. |
|
| InvoiceNo | string |
None. |
|
| GName | string |
None. |
|
| CustomerId | string |
None. |
|
| CopGNo | string |
None. |
|
| PageSize | integer |
None. |
|
| PageIndex | integer |
None. |
|
| TotalCount | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"dnNo": "sample string 1",
"invoiceNo": "sample string 2",
"gName": "sample string 3",
"customerId": "sample string 4",
"copGNo": "sample string 5",
"pageSize": 6,
"pageIndex": 7,
"totalCount": 8
}
application/xml, text/xml
Sample:
<BusDeclFormAuditBatchAddDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model"> <PageIndex>7</PageIndex> <PageSize>6</PageSize> <TotalCount>8</TotalCount> <CopGNo>sample string 5</CopGNo> <CustomerId>sample string 4</CustomerId> <DnNo>sample string 1</DnNo> <GName>sample string 3</GName> <InvoiceNo>sample string 2</InvoiceNo> </BusDeclFormAuditBatchAddDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResultOfPagedResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Success | boolean |
None. |
|
| Data | PagedResult |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"success": true,
"data": {
"totalCount": 1,
"items": {}
},
"message": "sample string 3"
}
application/xml, text/xml
Sample:
<ReturnResultOfPagedResultDN9A7J8d xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">
<d2p1:items />
<d2p1:totalCount>1</d2p1:totalCount>
</Data>
<Message>sample string 3</Message>
<Status>1</Status>
<Success>true</Success>
</ReturnResultOfPagedResultDN9A7J8d>