[TOC=2]
## 分组分类环图数据
~~~[api]
get:/device_statistics_v3/get_ring_data
*string:filter_type=type#筛选数据类型
<<<
success
参数和三个设备参数解析一致
分组 多了一个 group_id // 分组 id
类型 多了一个 type // 设备类型
<<<
group
{
"code": 0,
"data": {
"list": [
{
"peak_E": 42.1,
"peak_fee": 36.38,
"valley_E": 20.44,
"valley_fee": 3.4,
"flat_E": 363.79,
"flat_fee": 93.48,
"E_fee": 133.26,
"E": 426.33,
"group_id": 6,
"name": "办公室"
},
]
}
}
<<<
type
{
"code": 0,
"data": {
"list": [
{
"peak_E": 42.09,
"peak_fee": 36.37,
"valley_E": 20.44,
"valley_fee": 3.4,
"flat_E": 363.72,
"flat_fee": 93.47,
"E_fee": 133.24,
"E": 426.25,
"type": 6,
"name": "智能开关"
},
]
}
}
<<<
error
~~~
## 所有设备电量电费
~~~[api]
get:/device_statistics_v3/all_electricity_charge
*string:filter_type=day#筛选类型
*string:filter_date=2019-02-02#筛选时间
<<<
success
数据结构和单个设备一致
<<<
error
~~~
## 设备类型电量、电费
~~~[api]
get:/device_statistics_v3/type_electricity_charge
*int:type=0#设备类型 0 为全部设备类型
*string:filter_type=day#筛选类型
*string:filter_date=2019-02-02#筛选时间
<<<
success
数据结构和单个设备一致
<<<
error
~~~
## 分组设备电量、电费
~~~[api]
get:/device_statistics_v3/group_electricity_charge
*string:filter_type=day#筛选类型
*string:filter_date=2019-02-02#筛选时间
<<<
success
数据结构和单个设备一致
<<<
error
~~~
和单个设备一样返回数据只是没有电价
## 单个设备电量、电费
| 参数 | 可选值 |
| --- | --- |
| filter_type | <p>day 天</p><p>month 月</p><p>year 年</p><p>years 年份</p> |
~~~[api]
get:/device_statistics_v3/single_electricity_charge
*string:sn=850300000531#设备序列号
*string:filter_type=day#筛选类型
*string:filter_date=2020-04-04#默认昨天
<<<
success
day 返回 00 ~ 23 点的数据
month 返回对应月份的数据 1 ~ 31 号
year 返回 1 ~ 12 月的数据
years 返回已上报的数据的年份数据
返回字段说明
peak_fee // 峰段电费(元)
peak_E // 峰段电量(kW·h)
valley_fee // 谷段电费(元)
valley_E // 谷段电量(kW·h)
flat_fee // 平段电费(元)
flat_E // 平段电量(kW·h)
unit_price // 电费单价(元)
E_fee // 累计电费(元)
E // 累计电量(kW·h)
time // 时间 天是时刻 月是每天 年是每月 年份是每年
detail_time // 详细的时间
label // 时间简写
<<<
day
{
"code": 0,
"data": {
"list": [
{
"peak_fee": 0,
"peak_E": 0,
"valley_fee": 0,
"valley_E": 0,
"flat_fee": 0,
"flat_E": 0,
"unit_price": 1,
"E_fee": 0,
"E": 0,
"time": 0,
"detail_time": "2019-11-26 00:00:00",
"label": "00"
},
{
"peak_fee": 0,
"peak_E": 0,
"valley_fee": 0,
"valley_E": 0,
"flat_fee": 0,
"flat_E": 0,
"unit_price": 1,
"E_fee": 0,
"E": 0,
"time": 23,
"detail_time": "2019-11-26 23:00:00",
"label": "23"
}
]
}
}
<<<
month
{
"code": 0,
"data": {
"list": [
{
"peak_fee": 0,
"peak_E": 0,
"valley_fee": 0,
"valley_E": 0,
"flat_fee": 0,
"flat_E": 0,
"unit_price": 0,
"E_fee": 0,
"E": 0,
"time": 1,
"detail_time": "2019-11-01",
"label": "11-01"
},
{
"peak_fee": 0,
"peak_E": 0,
"valley_fee": 0.01,
"valley_E": 0.07,
"flat_fee": 0,
"flat_E": 0,
"unit_price": 0,
"E_fee": 0.01,
"E": 0.07,
"time": 29,
"detail_time": "2019-11-29",
"label": "11-29"
}
]
}
}
<<<
year
{
"code": 0,
"data": {
"list": [
{
"peak_fee": 0,
"peak_E": 0,
"valley_fee": 0,
"valley_E": 0,
"flat_fee": 0,
"flat_E": 0,
"unit_price": 0,
"E_fee": 0,
"E": 0,
"time": 1,
"detail_time": "2019-01",
"label": "19-01"
},
{
"peak_fee": 0.01,
"peak_E": 0.01,
"valley_fee": 0.08,
"valley_E": 0.53,
"flat_fee": 0.06,
"flat_E": 0.2,
"unit_price": 0,
"E_fee": 0.15,
"E": 0.74,
"time": 12,
"detail_time": "2019-12",
"label": "19-12"
}
]
}
}
<<<
years
{
"code": 0,
"data": {
"list": [
{
"peak_fee": 0.01,
"peak_E": 0.01,
"valley_fee": 0.14,
"valley_E": 0.9,
"flat_fee": 0.09,
"flat_E": 0.35,
"unit_price": 0,
"E_fee": 0.24,
"E": 1.26,
"time": "2019",
"detail_time": "2019",
"label": "2019"
},
{
"peak_fee": 0,
"peak_E": 0,
"valley_fee": 0.19,
"valley_E": 1.16,
"flat_fee": 0.22,
"flat_E": 0.68,
"unit_price": 0,
"E_fee": 0.41,
"E": 1.84,
"time": "2020",
"detail_time": "2020",
"label": "2020"
}
]
}
}
<<<
error
{
"code": -1,
"msg": "筛选类型不能为空"
}
~~~
- 文档说明
- 更新日志
- Web App 更新日志
- 自用云平台
- 鑫源云平台
- 生产管理
- 数据展示平台
- 云平台 - v3
- 设备文档
- KP0C0 - 0 - 0
- KP3C2 - 6 - 1
- K5C2 - 13 - 0
- KP1C2 - 18 - 0
- KP2C4 - 21 - 0
- K5C6 - 25 - 0
- KP5C1 - 27 - 0
- KD5P1 - 29 - 0
- KD5P5 - 46 - 0
- KP1C3 - 47 - 0
- KP1C4 - 48 - 0
- KP1C5 - 49 - 0
- KD4P6 - 53 - 0
- KP3C2 - 65 - 0
- KD5P8 - 72 - 0
- KP2C7 - 75 - 0
- KD5P601 - 76 - 0
- KD5P11 - 79 - 0
- KP01C1510 - 87 - 0
- KP03C0100 - 88 - 0
- KP01C1520 - 90 - 0
- 上报字段
- 数据库
- 登录注册
- 手机注册
- 邮箱注册
- 用户名注册
- 个人资料
- 管理功能
- 代理相关
- 代理设备
- 授权设备
- 代理功能
- 用户相关
- 用户设备
- 用户分组
- 权限相关
- 设备功能
- 设备分组
- 设备接口
- 数据统计
- 数据统计V2
- 数据统计V3
- 彩云8000 - 数据统计
- 号段申请
- 数据库
- 登录注销
- 申请用户
- 申请记录
- 用户申请
- 文件上传
- 生产管理
- 登录注册
- 提供接口