添加异常标志字段,修改规范字段名,类名

This commit is contained in:
hzj
2024-07-10 09:06:45 +08:00
parent fc0a88d4d8
commit 7f9c079c13
17 changed files with 51 additions and 11 deletions

View File

@@ -215,7 +215,7 @@ public class DataV {
private String lineId;
@Column(name = "phasic_type", tag = true)
private String phasicType;
private String phaseType;
@Column(name = "value_type", tag = true)
private String valueType;
@@ -232,4 +232,7 @@ public class DataV {
//自定义字段
@Column(name = "count")
private Integer count;
//是否是异常指标数据0否1是
@Column(name = "abnormal_flag")
private Integer abnormalFlag;
}