Files
pqs/pqs-influx/src/main/java/com/njcn/influx/imapper/DataHarmPowerPMapper.java

24 lines
706 B
Java
Raw Normal View History

2023-05-22 19:10:38 +08:00
package com.njcn.influx.imapper;
2023-05-05 13:39:49 +08:00
2024-03-06 17:04:08 +08:00
import com.njcn.influx.ano.Param;
import com.njcn.influx.ano.Select;
2023-05-05 13:39:49 +08:00
import com.njcn.influx.base.InfluxDbBaseMapper;
2024-03-06 17:04:08 +08:00
import com.njcn.influx.pojo.bo.CarryCapcityData;
2023-05-05 13:39:49 +08:00
import com.njcn.influx.pojo.po.DataHarmPowerP;
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> {
List<DataHarmPowerP> getStatisticsByWraper(InfluxQueryWrapper influxQueryWrapper);
2024-03-06 17:04:08 +08:00
@Select(value = "#{sql}",resultType = CarryCapcityData.class)
List<CarryCapcityData> getSqlResult(@Param("sql")String sql);
2023-05-05 13:39:49 +08:00
}