充值数据

# 充值数据总览 ## 说明 ``` ``` ### 请求参数 | 参数 | 说明 | 类型 | 备注 | 是否必填 | | ------- | -------- | ------ | ------------------- | -------- | | _handle | 处理类 | string | 固定值: PayPage| 是 | | _method | 处理方法 | string | 固定值: GetPayOverview| 是 | #### 请求地址 ``` 暂无 ``` ##### 返回值 ```json { "code": 1, "msg": "succeed", "data": { "xy_pay_money_count":"123",// 今日充值 "xy_pay_money_count_from_yesterday":"+123",// 较昨日 "xy_pay_money_count_high":"2020年6月6日(123个)",// 累计注册 "xy_pay_first_money_count":"123",// 今日首充金额 "xy_pay_first_money_count_from_yesterday":"+123",// 较昨日 "xy_pay_first_money_count_high":"2020年6月6日(123个)",// 累计注册 "xy_pay_user_count":"123",// 今日充值人数 "xy_pay_user_count_from_yesterday":"+123",// 较昨日 "xy_pay_user_count_high":"2020年6月6日(123个)",// 累计注册 "xy_firstpay_user_count":"123",// 今日首充人数 "xy_firstpay_user_count_from_yesterday":"+123",// 较昨日 "xy_firstpay_user_count_high":"2020年6月6日(123个)",// 累计注册 } } ``` # 图表数据 ## 说明 ``` ``` ### 请求参数 | 参数 | 说明 | 类型 | 备注 | 是否必填 | | ------- | -------- | ------ | ------------------- | -------- | | _handle | 处理类 | string | 固定值: PayPage| 是 | | _method | 处理方法 | string | 固定值: GetChart| 是 | | start_time | 开始日期 | datetime| 默认值: datetime.now.addday(-3) 2020-08-08 20:00:00| 是 | | end_time | 结束日期 | datetime| 默认值: datetime.now 2020-08-08 20:00:00| 是 | #### 请求地址 ``` 暂无 ``` ##### 返回值 ```json { "code": 1, "msg": "succeed", "data": { "pay":// 充值金额 [ { "time":"2020-08-08 20:00:00", "total":"123",// 总数 "first_total":"123",// 首充 "no_first_total":"123",// 非首充 } ], "pay_count":// 订单数量 [ { "time":"2020-08-08 20:00:00", "total":"123",// 总数 "first_total":"123",// 首充 "no_first_total":"123",// 非首充 } ], "pay_user_count":// 充值人数 [ { "time":"2020-08-08 20:00:00", "total":"123",// 总数 "first_total":"123",// 首充 "no_first_total":"123",// 非首充 } ], "pay_money":// 用户充值top10 [ { "xy_uid":"账号编号", "xy_uname":"账号名称", "total":"123" } ], "pay_game":// 充值内容top10 [ { "xy_game_id":"游戏编号", "xy_game_name":"游戏名称", "total":"123" } ], "pay_type":// 充值方式top10 [ { "xy_paytype":"充值方式", "xy_paytype_id":"充值方式编号", "total":"123" } ], "order_source":// 订单来源top10 [ { "xy_order_source":"订单来源", "total":"123" } ] } } ```