公告板
版本库
filestore
活动
搜索
登录
main
/
sccg_server
遂昌综合执法平台服务端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
修改查询分页处理
wl
2022-09-20
4e260f558428dd81c4dd8981a965cdaa0ebf12de
[sccg_server.git]
/
ycl-common
/
src
/
main
/
java
/
com
/
ycl
/
service
/
platform
/
zf
/
IVideowarmEventsreportService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.service.platform.zf;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.platform.zf.EnforcelawReport;
import com.ycl.entity.platform.zf.VideowarmEventsreport;
/**
* <p>
* 服务类
* </p>
*
* @author wl
* @since 2022-09-16
*/
public interface IVideowarmEventsreportService extends IService<VideowarmEventsreport> {
Page selectPageVo(Page<VideowarmEventsreport> enforcelawReportPage, String startTime, String endTime, String eventName, String eventType, String eventLocation, String eventRegion);
}