This commit is contained in:
2023-05-05 11:09:20 +08:00
parent 5ba4bd4052
commit 94cca84386
2 changed files with 23 additions and 6 deletions

View File

@@ -2,6 +2,7 @@ package com.njcn.influx.base;
import com.njcn.influx.ano.Insert;
import com.njcn.influx.query.InfluxQueryWrapper;
import java.util.List;
@@ -23,4 +24,12 @@ public interface InfluxDbBaseMapper<T> {
*/
@Insert
void insertBatch(List<T> entityList);
/***
* 根据查询条件返回
* @author hongawen
* @param influxQueryWrapper 查询条件
* @return T
*/
List<T> selectByQueryWrapper(InfluxQueryWrapper influxQueryWrapper);
}