|
|
@@ -3,6 +3,8 @@ package com.yunfeiyun.agmp.iot.common.domain;
|
|
|
import lombok.Data;
|
|
|
import org.hibernate.validator.constraints.Length;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* 告警指标,存储所有与告警相关的指标信息对象 IotWarnindicator
|
|
|
*
|
|
|
@@ -84,4 +86,7 @@ public class IotWarnindicator extends IotBaseEntity {
|
|
|
/** 关联的指标父类的 bid */
|
|
|
private String wiParentbid;
|
|
|
|
|
|
+ /** 子指标列表 */
|
|
|
+ private List<IotWarnindicator> childrenList;
|
|
|
+
|
|
|
}
|