查询暂降事件

This commit is contained in:
huangzj
2023-08-31 08:56:11 +08:00
parent 03f2982c5a
commit 381de5e088
5 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package com.njcn.influx.imapper;
import com.njcn.influx.base.InfluxDbBaseMapper;
import com.njcn.influx.pojo.po.cs.EntData;
import com.njcn.influx.query.InfluxQueryWrapper;
import java.util.List;
/**
* 类的介绍:
*
* @author xuyang
* @version 1.0.0
* @createTime 2023/5/5 14:39
*/
public interface EvtDataMapper extends InfluxDbBaseMapper<EntData> {
List<EntData> getEventData(InfluxQueryWrapper influxQueryWrapper);
}