feat(influx): 添加数据实体类的时间列注解和新字段

- 为多个数据实体类添加 @TimeColumn 注解以标识时间列
- 在多个数据实体类中新增 cl_did 和 process 字段
- 为 PqdData 类添加 quality_flag 字段作为标签
- 更新 DataInHarmRateI 类的时间序列化配置
- 统一数据实体类中的异常标志字段定义
This commit is contained in:
xy
2026-05-25 20:00:30 +08:00
parent 30492cffa1
commit c5b300abbf
15 changed files with 102 additions and 0 deletions

View File

@@ -189,4 +189,10 @@ public class DataHarmPhasicV {
//是否是异常指标数据0否1是
@Column(name = "abnormal_flag")
private Integer abnormalFlag;
@Column(name = "cl_did")
private String clDid;
@Column(name = "process")
private String process;
}