文档
测试

获取所有流水列表

GET
https://test.52miaosuan.com:8090/miaosuan/finance/flow/list

接口描述

获取所有流水列表

请求头

参数名
类型
描述
必填
user_id
int
用户编号
必填

请求参数

参数名
类型
描述
必填
page_index
int
分页页码
必填
page_size
int
每页显示的条数
必填
finance_type
int
财务类型过滤,0-全部流水,1-项目流水,2-基础流水
必填

说明 / 示例

返回响应: ```json { "code": 0, "msg": "成功", "data": { "total_expense": 75523.82, "total_income": 0, "current_amount": -75523.82 "item_list": [ { "id": 523, "create_time": "2021-08-12", "update_time": "2021-08-12", "occur_time": "2021-08-12", "series_number": "020070000048", "amount": 5000.00, "upper_amount": "伍仟元", "flow_type": "收入-合同打款", "flow_direct": 1, "flow_done": 1, "flow_status": "已收", "trade_type_id": 1, "trade_type": "支付宝转账", "related_name": "", "recorder_name": "测试公司名称2", "description": "", "flow_source": "浦东星河湾8号801", "flow_title": "项目收入-合同打款", "finance_type": 0, "project_id": 114 } ], "total_num": 114 } } ```