package com.iailab.module.event.service;
|
|
import com.iailab.framework.common.service.BaseService;
|
import com.iailab.module.event.dto.EventInfoDTO;
|
import com.iailab.module.event.entity.EventInfoEntity;
|
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年05月30日
|
*/
|
public interface EventInfoService extends BaseService<EventInfoEntity> {
|
|
void save(EventInfoDTO dto);
|
|
Long getCount(String eventDevice, Date startTime, Date endTime);
|
}
|