feat(influx): 添加数据清洗标志常量

- 新增 abnormal_flag 常量用于标识数据清洗状态
- 添加注释说明数据清洗标志含义(0:正常 1:异常)
This commit is contained in:
xy
2026-05-19 15:04:10 +08:00
parent 6375115d77
commit df01e39a58

View File

@@ -196,5 +196,8 @@ public interface InfluxDBTableConstant {
String NORMAL = "0";
String UN_NORMAL = "1";
/**
* 数据清洗标志 0:正常 1:异常
*/
String ABNORMAL_FLAG = "abnormal_flag";
}