package org.springblade.modules.health.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import org.apache.ibatis.annotations.Param; import org.springblade.modules.health.entity.HealthCard; import org.springblade.modules.health.vo.HealthCardVO; /** * 健康证服务类 * * @author zhongrj * @since 2022-03-01 */ public interface HealthCardService extends IService { /** * 自定义分页 * * @param page * @param healthCardVO * @return */ IPage selectHealthCardPage(IPage page, @Param("healthCardVO") HealthCardVO healthCardVO); }