wl
2022-12-08 b3bc63da84e8d1631bfe79b2002477b7fc1866cf
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);
}