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; /** *

* 案件基本信息 Mapper 接口 *

* * @author wl * @since 2022-09-24 */ public interface BaseCaseMapper extends BaseMapper { Page listViolationsPage(Page page, Integer state, Integer type, Integer resource); Page listIllegalBuildingsPage(Page page, Integer state, Integer type, Integer resource); }