2023-05-22 19:10:38 +08:00
|
|
|
package com.njcn.influx.imapper;
|
2023-05-05 13:39:49 +08:00
|
|
|
|
|
|
|
|
import com.njcn.influx.base.InfluxDbBaseMapper;
|
|
|
|
|
import com.njcn.influx.pojo.po.DataFluc;
|
2023-11-10 15:27:15 +08:00
|
|
|
import com.njcn.influx.query.InfluxQueryWrapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
2023-05-05 13:39:49 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author hongawen
|
|
|
|
|
* @version 1.0.0
|
|
|
|
|
* @date 2023年05月05日 08:56
|
|
|
|
|
*/
|
|
|
|
|
public interface DataFlucMapper extends InfluxDbBaseMapper<DataFluc> {
|
2023-11-10 15:27:15 +08:00
|
|
|
|
|
|
|
|
List<DataFluc> getStatisticsByWraper(InfluxQueryWrapper influxQueryWrapper);
|
2023-05-05 13:39:49 +08:00
|
|
|
}
|