文档
测试

店铺收益折线图

GET
/app/store/storeMonthProfit

请求参数

参数名
类型
描述
必填
sign
String
验证签名
必填
user_id
String
用户id
必填

响应参数

参数名
类型
描述
必填
code
long
状态码,等于1,操作成功,小于0,操作失败
必填
msg
String
状态信息
必填
result
json
返回数据信息
必填
month_list
list
统计月份
必填
rcmd_profit
list
推广收益
必填
deal_profit
list
POS机交易
必填
facepay_profit
list
刷脸支付交易
必填
repay_profit
list
账单延期
必填
active_profit
list
POS机激活
必填

说明 / 示例

``` { "code": 1, "msg": "操作成功", "result": { "facepay_profit": [ "0", "0", "0", "0", "0", "0" ], "deal_profit": [ "0", "0", "0", "14.48", "0", "29.27" ], "repay_profit": [ "0", "0", "0", "0", "0", "0" ], "month_list": [ "2020-05", "2020-06", "2020-07", "2020-08", "2020-09", "2020-10" ], "rcmd_profit": [ "0", "0", "0", "0", "0", "0" ], "active_profit": [ "0", "0", "0", "0", "0", "4.00" ] }, "errors": {} } ```