文档
测试

账单统计查询

POST
http://127.0.0.1:8181/staff/bill/statistics

请求参数

参数名
类型
描述
必填
parkName
string
园区名称
必填

响应参数

参数名
类型
描述
必填
todayAmount
decimal
今日已收金额
必填
historyNotAmount
decimal
历史未收金额
必填
historyNotTotal
int
历史未收客户家数
必填
thisMonthAmount
decimal
本月已收金额
必填
thisMonthNotAmount
decimal
本月未收金额
必填
thisMonthTotal
int
本月已收客户家数
必填
thisMonthNotTotal
int
本月未收客户家数
必填

说明 / 示例

**请求报文** ```language { "parkName":"万隆数字园" } ``` **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "todayAmount": 0, "historyNotAmount": 180902.62, "historyNotTotal": 2, "thisMonthAmount": 31421.95, "thisMonthNotAmount": 130743.62, "thisMonthTotal": 2, "thisMonthNotTotal": 2 }, "traceId": "8c66c6780ab74a848f0e25c797e44988", "success": true } ```