公告板
版本库
filestore
活动
搜索
登录
main
/
sccg_server
遂昌综合执法平台服务端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
批量审核和图片保存bug
zhanghua
2025-04-14
1cad14bca191807e18705c3a5526eda8151be439
[sccg_server.git]
/
ycl-platform
/
src
/
main
/
java
/
com
/
ycl
/
mapper
/
zf
/
VideowarmEventsreportMapper.java
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);
}