db
潘志宝
2024-08-06 368b5e9c2066f2e37c19b6d95d8597e021ffa20a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
}