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.DataHarmPowerP;
|
2023-08-09 19:11:21 +08:00
|
|
|
import com.njcn.influx.pojo.po.DataV;
|
|
|
|
|
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日 09:00
|
|
|
|
|
*/
|
|
|
|
|
public interface DataHarmPowerPMapper extends InfluxDbBaseMapper<DataHarmPowerP> {
|
2023-08-09 19:11:21 +08:00
|
|
|
|
|
|
|
|
List<DataHarmPowerP> getStatisticsByWraper(InfluxQueryWrapper influxQueryWrapper);
|
2023-05-05 13:39:49 +08:00
|
|
|
}
|