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.
102 lines
1.6 KiB
102 lines
1.6 KiB
1 month ago
|
package redisKey
|
||
|
|
||
|
const (
|
||
|
Station = "station"
|
||
|
|
||
|
Station_pm_extra = "station_extra"
|
||
|
|
||
|
Station_extra = "station_extras"
|
||
|
|
||
|
// 暂未使用
|
||
|
Device = "device"
|
||
|
|
||
|
Formula = "formula"
|
||
|
|
||
|
Factor = "factor"
|
||
|
|
||
|
Proto = "proto"
|
||
|
|
||
|
Device_proto = "device-proto"
|
||
|
|
||
|
Group = "group"
|
||
|
|
||
|
Station_group = "sg"
|
||
|
|
||
|
Station_corr_group = "scg"
|
||
|
|
||
|
Threshold = "threshold"
|
||
|
|
||
|
Ration = "ration"
|
||
|
|
||
|
Filter = "filter"
|
||
|
|
||
|
Iota_device = "iota_device"
|
||
|
|
||
|
Iota_thing = "iota_thing"
|
||
|
|
||
|
Iota_meta = "iota_meta"
|
||
|
|
||
|
// 包含设备的测点ID数组 Array[Int]
|
||
|
Device_stationIds = "device_stations"
|
||
|
|
||
|
// 包含设备的测点ID数组 Array[Int]
|
||
|
Device_stationObjs = "device_stationObjs"
|
||
|
|
||
|
// thing对应的结构物配置信息
|
||
|
Thing_struct = "thing_struct"
|
||
|
|
||
|
// 结构物对应监测因素配置信息
|
||
|
Struct_factor = "struct_factor"
|
||
|
|
||
|
// 结构物对应监测因素别名配置信息
|
||
|
Struct_factor_name = "struct_factor_name"
|
||
|
|
||
|
// thing对应的设备ID
|
||
|
Thing_devices = "thing_devices"
|
||
|
|
||
|
// iota thing deploy
|
||
|
Deploy = "deploy"
|
||
|
|
||
|
// iota 采集策略
|
||
|
Scheme = "scheme"
|
||
|
|
||
|
Scheme_state = "scheme_state"
|
||
|
|
||
|
// 设备侧计算公式绑定关系
|
||
|
Product_formula = "product_formula"
|
||
|
|
||
|
Agg_threshold = "AggThreshold"
|
||
|
|
||
|
Dyna_glt = "dyna_glt"
|
||
|
|
||
|
Report = "reportGenerate"
|
||
|
|
||
|
Report_template = "reportTemplate"
|
||
|
|
||
|
Structure = "structure"
|
||
|
|
||
|
Structure_extra = "structure_extra"
|
||
|
|
||
|
//单位转换
|
||
|
Transform_units = "transform_units"
|
||
|
|
||
|
Alarm_code = "alarm_code"
|
||
|
|
||
|
// 滑窗缓存
|
||
|
Cache_filter = "cache_filter"
|
||
|
|
||
|
CacheWindow = "cacheWindow"
|
||
|
|
||
|
Agg_warn_time = "agg_warn_time"
|
||
|
|
||
|
Agg_pm10_warn_time = "agg_pm10_warn_time"
|
||
|
|
||
|
Wise_value = "wise_value"
|
||
|
|
||
|
Project_struct = "project_struct"
|
||
|
|
||
|
Trace = "trace"
|
||
|
|
||
|
StationData = "stationData"
|
||
|
)
|