29 lines
581 B
Java
29 lines
581 B
Java
|
|
package com.njcn.influx.service;
|
||
|
|
|
||
|
|
import com.njcn.influx.pojo.dto.EventQueryDTO;
|
||
|
|
import com.njcn.influx.pojo.dto.StatisticalDataDTO;
|
||
|
|
import com.njcn.influx.pojo.po.cs.EntData;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Description:
|
||
|
|
* Date: 2023/6/2 16:00【需求编号】
|
||
|
|
*
|
||
|
|
* @author clam
|
||
|
|
* @version V1.0.0
|
||
|
|
*/
|
||
|
|
public interface EvtDataService {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Description: getEventData
|
||
|
|
* @Param:
|
||
|
|
* @return: java.util.List<com.njcn.influx.pojo.po.cs.EntData>
|
||
|
|
* @Author: clam
|
||
|
|
* @Date: 2023/8/30
|
||
|
|
*/
|
||
|
|
List<EntData> getEventData(EventQueryDTO eventQueryDTO);
|
||
|
|
}
|