1.增加稳态告警统计限值
This commit is contained in:
@@ -73,6 +73,7 @@ public class DetailAbnormalVO {
|
|||||||
//最大
|
//最大
|
||||||
private String val;
|
private String val;
|
||||||
|
|
||||||
|
//限值
|
||||||
|
private float overLimitValue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,14 +9,29 @@ import lombok.Data;
|
|||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
public class JsonBaseVO {
|
public class JsonBaseVO {
|
||||||
|
/**
|
||||||
|
* 超标时间
|
||||||
|
*/
|
||||||
private String time;
|
private String time;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 异常值
|
||||||
|
*/
|
||||||
private String value;
|
private String value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 相别
|
||||||
|
*/
|
||||||
private String phasic;
|
private String phasic;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数据类型(最大值:max、最小值:min、平均值:avg、95值:cp95)
|
||||||
|
*/
|
||||||
private String valueType;
|
private String valueType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 限值
|
||||||
|
*/
|
||||||
|
private float overLimitValue;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -509,6 +509,7 @@ public class DataVerifyServiceImpl extends ServiceImpl<DataVerifyMapper, DataVer
|
|||||||
vo.setVal(valArr[i]);
|
vo.setVal(valArr[i]);
|
||||||
vo.setPhaseType(phasic);
|
vo.setPhaseType(phasic);
|
||||||
vo.setTargetName(StrUtil.isNotBlank(count) ? count + "次" + targetName : targetName);
|
vo.setTargetName(StrUtil.isNotBlank(count) ? count + "次" + targetName : targetName);
|
||||||
|
vo.setOverLimitValue(it.getOverLimitValue());
|
||||||
result.add(vo);
|
result.add(vo);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user