POST api/Voc/GetVoucherList
获取凭证列表
Request Information
URI Parameters
None.
Body Parameters
请求数据
VocRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| year |
年 |
integer |
None. |
| month |
月 |
integer |
None. |
| v_no |
凭证号 |
string |
None. |
| v_type |
类型:0-凭证 1-报表 2-其他 |
integer |
None. |
| maker_man |
制单人 |
string |
None. |
| checker_man |
审核人 |
string |
None. |
| post_man |
过账人 |
string |
None. |
| add_emp_name |
录入人 |
string |
None. |
| add_start_time |
录入时间 |
string |
None. |
| add_end_time |
录入时间 |
string |
None. |
| page |
页码 |
integer |
None. |
| page_size |
每页显示条数 |
integer |
None. |
| user_id |
当前登录者Id |
string |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"year": 1,
"month": 1,
"v_no": "sample string 1",
"v_type": 1,
"maker_man": "sample string 2",
"checker_man": "sample string 3",
"post_man": "sample string 4",
"add_emp_name": "sample string 5",
"add_start_time": "sample string 6",
"add_end_time": "sample string 7",
"page": 8,
"page_size": 9,
"user_id": "sample string 10",
"token": "sample string 11"
}
application/xml, text/xml
Sample:
<VocRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model"> <token>sample string 11</token> <user_id>sample string 10</user_id> <page>8</page> <page_size>9</page_size> <add_emp_name>sample string 5</add_emp_name> <add_end_time>sample string 7</add_end_time> <add_start_time>sample string 6</add_start_time> <checker_man>sample string 3</checker_man> <maker_man>sample string 2</maker_man> <month>1</month> <post_man>sample string 4</post_man> <v_no>sample string 1</v_no> <v_type>1</v_type> <year>1</year> </VocRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
获取凭证列表
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |