feat(influx): 添加APF数据实体和映射器
- 创建ApfData实体类,定义APF相关数据字段和序列化配置 - 配置InfluxDB注解包括测量名称、时间列和标签列 - 定义电压、电流、功率等APF监测参数字段 - 实现InfluxDbBaseMapper接口创建ApfDataMapper数据访问层
This commit is contained in:
14
src/main/java/com/njcn/influx/imapper/ApfDataMapper.java
Normal file
14
src/main/java/com/njcn/influx/imapper/ApfDataMapper.java
Normal 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> {
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user