19 lines
493 B
Java
19 lines
493 B
Java
package com.njcn.influx.imapper;
|
|
|
|
import com.njcn.influx.base.InfluxDbBaseMapper;
|
|
import com.njcn.influx.pojo.po.DataHarmPowerP;
|
|
import com.njcn.influx.pojo.po.DataV;
|
|
import com.njcn.influx.query.InfluxQueryWrapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author hongawen
|
|
* @version 1.0.0
|
|
* @date 2023年05月05日 09:00
|
|
*/
|
|
public interface DataHarmPowerPMapper extends InfluxDbBaseMapper<DataHarmPowerP> {
|
|
|
|
List<DataHarmPowerP> getStatisticsByWraper(InfluxQueryWrapper influxQueryWrapper);
|
|
}
|