文档
测试

年利润推算

GET
{{url_public}}/factor/count/month/profit/year

响应数据

```json { "errorCode": 0, "msgType": 1, "result": { "list": [ { "count": 0, // 客户数 "id": 11, "intro": "五星客户", // 名称 "numList": [20000,40000], "sort": 1, "type": 5 }, { "count": 0, "id": 12, "intro": "四星客户", "numList": [10000,20000], "sort": 2, "type": 5 }, { "count": 1, "id": 13, "intro": "三星客户", "numList": [5000,10000], "sort": 3, "type": 5 }, { "count": 1, "id": 14, "intro": "普通客户", "numList": [2000,5000], "sort": 4, "type": 5 } ], "moneyTotal": 1000, // 客户结算 "moneyProfit": 20 // 收益 } } ```