houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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);
}