|
|
@ -17,7 +17,7 @@ public class DeviceModelData { |
|
|
|
* 模型id |
|
|
|
* 模型id |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("model_id") |
|
|
|
@JsonProperty("model_id") |
|
|
|
private Long modelId; |
|
|
|
private String modelId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 名称 |
|
|
|
* 名称 |
|
|
@ -45,13 +45,13 @@ public class DeviceModelData { |
|
|
|
* 保留位数 |
|
|
|
* 保留位数 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("keep_figures") |
|
|
|
@JsonProperty("keep_figures") |
|
|
|
private Integer keepFigures; |
|
|
|
private String keepFigures; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 取数规则 0 平均值、1 最大值、2 最小值、3 最后值、4 最早值、5 和值、6 差值 |
|
|
|
* 取数规则 0 平均值、1 最大值、2 最小值、3 最后值、4 最早值、5 和值、6 差值 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("access_rules") |
|
|
|
@JsonProperty("access_rules") |
|
|
|
private Integer accessRules; |
|
|
|
private String accessRules; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 描述 |
|
|
|
* 描述 |
|
|
@ -67,12 +67,12 @@ public class DeviceModelData { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 告警等级 |
|
|
|
* 告警等级 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private Integer level; |
|
|
|
private String level; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 告警频率 |
|
|
|
* 告警频率 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private Integer duration; |
|
|
|
private String duration; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 参数名称 |
|
|
|
* 参数名称 |
|
|
@ -90,25 +90,25 @@ public class DeviceModelData { |
|
|
|
* 单点控制状态,0:分,1:合 |
|
|
|
* 单点控制状态,0:分,1:合 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("control_status") |
|
|
|
@JsonProperty("control_status") |
|
|
|
private Integer controlStatus; |
|
|
|
private String controlStatus; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 是否弹窗 |
|
|
|
* 是否弹窗 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("is_popup") |
|
|
|
@JsonProperty("is_popup") |
|
|
|
private Integer isPopup; |
|
|
|
private String isPopup; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 是否反校 |
|
|
|
* 是否反校 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("is_check") |
|
|
|
@JsonProperty("is_check") |
|
|
|
private Integer isCheck; |
|
|
|
private String isCheck; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 参数来源,0:默认,1:属性值 |
|
|
|
* 参数来源,0:默认,1:属性值 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("parameter_source") |
|
|
|
@JsonProperty("parameter_source") |
|
|
|
private Integer parameterSource; |
|
|
|
private String parameterSource; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 来源属性标识 |
|
|
|
* 来源属性标识 |
|
|
@ -120,7 +120,7 @@ public class DeviceModelData { |
|
|
|
* 控制参数,0:分/合,1:退/投,2:停止/启动 |
|
|
|
* 控制参数,0:分/合,1:退/投,2:停止/启动 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("control_parameter") |
|
|
|
@JsonProperty("control_parameter") |
|
|
|
private Integer controlParameter; |
|
|
|
private String controlParameter; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 参数json |
|
|
|
* 参数json |
|
|
@ -132,24 +132,24 @@ public class DeviceModelData { |
|
|
|
* 间隔时长 |
|
|
|
* 间隔时长 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("interval_length") |
|
|
|
@JsonProperty("interval_length") |
|
|
|
private Integer intervalLength; |
|
|
|
private String intervalLength; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 参数范围最小值 |
|
|
|
* 参数范围最小值 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("min_value") |
|
|
|
@JsonProperty("min_value") |
|
|
|
private Integer minValue; |
|
|
|
private String minValue; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 参数范围最大值 |
|
|
|
* 参数范围最大值 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@JsonProperty("max_value") |
|
|
|
@JsonProperty("max_value") |
|
|
|
private Integer maxValue; |
|
|
|
private String maxValue; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 参数系数 |
|
|
|
* 参数系数 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private Integer coefficient; |
|
|
|
private String coefficient; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 类型,0:属性,1:功能,2:事件 |
|
|
|
* 类型,0:属性,1:功能,2:事件 |
|
|
|