文档
测试

获取财务看板总览

GET
https://test.52miaosuan.com:8090/miaosuan/dashboard/finance/summary

接口描述

获取财务看板总览

请求头

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

响应参数

参数名
类型
描述
必填
code
int
示例:0
必填
msg
string
示例:成功
必填
data
object
数据字典
必填
total_received_income
int
总的已收金额
必填
total_expense
int
总的已支出金额
必填
total_unreceived_income
int
总的未收金额
必填
current_num
int
当前结余金额
必填

说明 / 示例

接口响应: ```json { "code": 0, "msg": "成功", "data": { "total_received_income": 80000.00, "total_expense": 74000.00, "total_unreceived_income": 0, "current_num": 6000.00 } } ```