5. jiace开放平台财务管理
5.1. 获取财务流水信息列表
Type: GET
Author: lones
Content-Type: application/x-www-form-urlencoded;charset=utf-8
Description: 获取财务流水信息列表
Query-parameters:
Parameter | Type | Description | Required | Since |
---|---|---|---|---|
startTime |
string |
查询起始时间 |
false |
- |
endTime |
string |
查询结束时间 |
false |
- |
currentPage |
int32 |
当前页 |
false |
- |
pageSize |
int32 |
每页数 |
false |
- |
Request-example:
curl -X GET -i /openapi/account/accountFlowList?currentPage=1&endTime=2023-05-07 22:48:58&pageSize=10&startTime=2023-05-07 22:48:58
Response-fields:
Field | Type | Description | Since |
---|---|---|---|
code |
int64 |
No comments found. |
- |
message |
string |
No comments found. |
- |
data |
object |
No comments found. |
- |
└─searchCount |
boolean |
进行 count 查询 【 默认: true 】 |
- |
└─pages |
int64 |
当前分页总页数 |
- |
└─hitCount |
boolean |
是否命中count缓存 |
3.3.1 |
└─records |
array |
分页记录列表 |
- |
└─id |
int64 |
No comments found. |
- |
└─tradeAmount |
number |
交易金额 |
- |
└─tradeNo |
string |
交易编号 |
- |
└─userId |
string |
用户id |
- |
└─tradeDesc |
string |
交易描述 |
- |
└─delFlag |
int32 |
No comments found. |
- |
└─updateTime |
string |
No comments found. |
- |
└─createTime |
string |
No comments found. |
- |
└─total |
int64 |
当前满足条件总行数 |
- |
└─size |
int64 |
获取每页显示条数 |
- |
└─current |
int64 |
当前页 |
- |
Response-example:
{
"code": 890,
"message": "success",
"data": {
"searchCount": true,
"pages": 2,
"hitCount": true,
"records": [
{
"id": 51,
"tradeAmount": 266,
"tradeNo": "0ab21b",
"userId": "121",
"tradeDesc": "5hh8mb",
"delFlag": 8,
"updateTime": "2023-05-07 22:48:59",
"createTime": "2023-05-07 22:48:59"
}
],
"total": 781,
"size": 962,
"current": 520
}
}