mg
2022-10-12 3f9ebf19e687c33287b0eaec64d4564a212f57db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.mapper.zf;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ycl.entity.zf.VideoWarnEventsReport;
 
/**
 * <p>
 * Mapper 接口
 * </p>
 *
 * @author wl
 * @since 2022-09-16
 */
public interface VideowarmEventsreportMapper extends BaseMapper<VideoWarnEventsReport> {
 
    Page selectPageVo(Page<VideoWarnEventsReport> page, String startTime, String endTime, String eventLocation, String eventName, String eventType, String eventRegion);
}