wl
2022-09-28 4ade291ebd74dd4cd42556f07bd4f205f73c3313
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ycl.mapper.caseHandler;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ycl.bo.casePool.CasePoolIllegalBuildingDO;
import com.ycl.bo.casePool.CasePoolViolationDO;
import com.ycl.entity.caseHandler.BaseCase;
 
/**
 * <p>
 * 案件基本信息 Mapper 接口
 * </p>
 *
 * @author wl
 * @since 2022-09-24
 */
public interface BaseCaseMapper extends BaseMapper<BaseCase> {
    Page<CasePoolViolationDO> listViolationsPage(Page page, Integer state, Integer type, Integer resource);
 
    Page<CasePoolIllegalBuildingDO> listIllegalBuildingsPage(Page page, Integer state, Integer type, Integer resource);
}