POST api/JournalAccount/GetJournalAccountList
获取日常收支列表
Request Information
URI Parameters
None.
Body Parameters
GetJournalAccountListDto| Name | Description | Type | Additional information |
|---|---|---|---|
| pageIndex | integer |
None. |
|
| pageSize | integer |
None. |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
|
| JournalTypeKey | string |
None. |
|
| JournalType | string |
None. |
|
| StatusKey | string |
None. |
|
| JournalAccountNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"pageIndex": 1,
"pageSize": 2,
"StartDate": "sample string 3",
"EndDate": "sample string 4",
"JournalTypeKey": "sample string 5",
"JournalType": "sample string 6",
"StatusKey": "sample string 7",
"JournalAccountNumber": "sample string 8"
}
application/xml, text/xml
Sample:
<GetJournalAccountListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity"> <EndDate>sample string 4</EndDate> <JournalAccountNumber>sample string 8</JournalAccountNumber> <JournalType>sample string 6</JournalType> <JournalTypeKey>sample string 5</JournalTypeKey> <StartDate>sample string 3</StartDate> <StatusKey>sample string 7</StatusKey> <pageIndex>1</pageIndex> <pageSize>2</pageSize> </GetJournalAccountListDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | ReturnCode |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 200,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<ResultModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data /> <Message>sample string 1</Message> </ResultModelOfanyType>