You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.4 KiB
28 lines
1.4 KiB
// 设备监测
|
|
export enum deviceMonitor {
|
|
getDeviceGraph = '/carbon-smart/api/monitor/getDeviceGraph',
|
|
getDevicePointToMonitor = '/carbon-smart/api/monitor/getDevicePointToMonitor',
|
|
}
|
|
|
|
// 能耗监测
|
|
export enum energyMonitor {
|
|
getDeviceOrNodeEnergyGraph = '/carbon-smart/api/monitor/getDeviceOrNodeEnergyGraph',
|
|
getDeviceOrNodeEnergyAnalyse = '/carbon-smart/api/monitor/getDeviceOrNodeEnergyAnalyse',
|
|
}
|
|
|
|
// 环境监测
|
|
export enum environmentMonitor {
|
|
getDeviceStatus = '/carbon-smart/api/monitor/getDeviceStatus', //环境监测-获取设备状态
|
|
getDeviceAverages = '/carbon-smart/api/monitor/getDeviceAverages', //环境监测-获取设备平均值
|
|
queryDeviceArea = '/carbon-smart/deviceInfo/queryDeviceArea', //查询区域位置组成树结构
|
|
getDeviceHotMap = '/carbon-smart/api/monitor/getDeviceHotMap', //环境监测-获取环境热力图
|
|
|
|
getDeviceHistory = '/carbon-smart/api/monitor/getDeviceHistory', //环境监测-历史数据-获取环境设备历史数据
|
|
|
|
getDeviceAveragesByRate = '/carbon-smart/api/monitor/getDeviceAveragesByRate', //环境监测-平均数据-获取环境设备平均数据
|
|
|
|
queryDeviceInfoListPage = '/carbon-smart/api/monitor/queryDeviceInfoListPage', //环境监测-根据条件查询设备数据(分页) 配置监测点位
|
|
|
|
startUpDevice = '/carbon-smart/api/monitor/startUpDevice', // 环境监测-配置启动设备
|
|
stopDevice = '/carbon-smart/api/monitor/stopDevice', // 环境监测-停用设备
|
|
}
|
|
|