package org.springblade.modules.health.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import org.apache.ibatis.annotations.Param; import org.springblade.modules.health.entity.HealthCard; import org.springblade.modules.health.vo.HealthCardVO; import java.util.List; /** * 健康证Mapper 接口 * * @author zhongrj * @since 2022-03-01 */ public interface HealthCardMapper extends BaseMapper { /** * 自定义分页 * * @param page * @param healthCard * @return */ List selectHealthCardPage(IPage page, @Param("healthCard") HealthCardVO healthCard); }