3.8 统计抓拍记录总数和人员总数接口
## 3.8 统计抓拍记录总数和人员总数接口
按照时间段统计抓拍记录总数和人员总数。
## 基本信息
>i Method:get
Url:/api/v1/camera/passenger/recordCount
## 请求参数
|序号|参数名|值(示例)|类型|是否必须|描述|
|-|-|-|-|-|-|
|1|startDate|2020-06-08|string|否|起始日期|
|2|endDate|2020-06-08|string|否|终止日期|
## 接口返回
成功返回
>s{
"msg": "ok",
"code": 0,
"data": {
"allCount": 2710,
"personCount": 739
},
"success": true
}
失败返回
>d{
"code": 2,
"msg": "未知错误!",
"success": false
}