## 多终端合一汇总
>[success] 注: 如查询当天日期 开始日期和结束日期填写一致 如20190621 或20190621000000 格式:年月日时分秒
>[danger] 时间查询最大查询日期为3天 请终端各位小哥哥、小姐姐做好适配
**接口method : mch_orderCount**
| 字段名 | 变量名 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- | --- |
| 门店ID |store_id| 否 | Int | 多个门店可选传,不传不限制 |
| 支付状态 |status| 是| Int | 支付状态 1 支付成功 2 退款成功 3 未支付成功订单 4全部|
| 开始时间 |sdate| 是 | String | 筛选时间段范围 开始时间 类型YmdHis 如:20190621 |
| 结束时间 |edate| 是 | String | 筛选时间段范围 结束时间 类型YmdHis 如:20190622235959 |
| 字符串 | nonce_str | 是 | String | 随机字符串 字符范围a-zA-Z0-9 |
提交报文
```
{
“appid”:”3315919327”,
“method”:”mch_orderCount”,
“data”:{
“store_id”:1,
“status”:4,
“sdate”:”20190624”,
“edate”:”20190624”,
“nonce_str”:”5d10f3e6195b1”
},
“sign”:”9C58E53CAE3198044CD14023026A61F4”
}
```
![](https://img.kancloud.cn/b5/03/b503c22d83a299afd01e96eb3e904332_565x401.jpg)
返回报文
```
{
“code”: 100,
“msg”: “汇总数据成功”,
“data”: {
“stime”: “2019-06-24 00:00:00”,
“etime”: “2019-06-25 00:00:00”,
“count”: “2”,
“total”: 0.02,
“re_total”: 0.01,
“suc_total”: 0.01,
“wx_count”: “1”,
“wx_total”: 0.01,
“wx_re_total”: 0,
“wx_suc_total”: 0.01,
“ali_count”: “1”,
“ali_total”: 0.01,
“ali_re_total”: 0.01,
“ali_suc_total”: 0,
“nonce_str”: “Face5d28b2063559b”
},
“sign”: “DF36F9E37496475F078D0113729F37D1”
}
```