feat(influx): 添加APF数据实体和映射器

- 创建ApfData实体类,定义APF相关数据字段和序列化配置
- 配置InfluxDB注解包括测量名称、时间列和标签列
- 定义电压、电流、功率等APF监测参数字段
- 实现InfluxDbBaseMapper接口创建ApfDataMapper数据访问层
This commit is contained in:
xy
2026-06-02 14:47:23 +08:00
parent 1a54d53014
commit 91e42a1679
2 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.njcn.influx.imapper;
import com.njcn.influx.base.InfluxDbBaseMapper;
import com.njcn.influx.pojo.po.cs.ApfData;
/**
* @author hongawen
* @version 1.0.0
* @date 2023年07月17日 11:05
*/
public interface ApfDataMapper extends InfluxDbBaseMapper<ApfData> {
}