zhanghua
2025-04-14 1cad14bca191807e18705c3a5526eda8151be439
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.service.zf;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.zf.VideoWarnEventsReport;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author wl
 * @since 2022-09-16
 */
public interface IVideowarmEventsreportService extends IService<VideoWarnEventsReport> {
 
    Page selectPageVo(Page<VideoWarnEventsReport> enforcelawReportPage, String startTime, String endTime, String eventName, String eventType, String eventLocation, String eventRegion);
}