2024-06-27 11:46:52 +08:00
|
|
|
package com.njcn.influx.service;
|
|
|
|
|
|
|
|
|
|
import com.njcn.influx.pojo.po.DataHarmRateV;
|
|
|
|
|
import com.njcn.influx.query.InfluxQueryWrapper;
|
2024-09-13 18:42:57 +08:00
|
|
|
import java.util.List;
|
2024-06-27 11:46:52 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author hongawen
|
|
|
|
|
* @version 1.0.0
|
|
|
|
|
* @date 2023年07月17日 11:01
|
|
|
|
|
*/
|
|
|
|
|
public interface DataHarmRateVService {
|
|
|
|
|
DataHarmRateV getMeanAllTimesData(InfluxQueryWrapper influxQueryWrapper);
|
2024-09-13 18:42:57 +08:00
|
|
|
List<DataHarmRateV> getNewDataHarmRateV(String lineIndex, String startTime, String endTime);
|
2024-06-27 11:46:52 +08:00
|
|
|
}
|