公告板
版本库
filestore
活动
搜索
登录
main
/
sccg_server
遂昌综合执法平台服务端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
批量审核和图片保存bug
zhanghua
2025-04-14
1cad14bca191807e18705c3a5526eda8151be439
[sccg_server.git]
/
ycl-platform
/
src
/
main
/
java
/
com
/
ycl
/
mapper
/
zf
/
EnforcelawReportMapper.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.EnforceLawReport;
/**
* <p>
* 违规事项处置管理:包含违法(违建)情况上报、立案、派遣、处置、核查、结案 Mapper 接口
* </p>
*
* @author lyq
* @since 2022-09-14
*/
public interface EnforcelawReportMapper extends BaseMapper<EnforceLawReport> {
Page<EnforceLawReport> selectPageVo(Page<EnforceLawReport> page, String startTime, String endTime, String community, String status, String partiesName, String partiesID);
}