package org.springblade.modules.apply.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.apply.entity.ExamPayment; import org.springblade.modules.apply.vo.ExamPaymentVO; import java.util.List; /** * 考试缴费Mapper 接口 * @author zhongrj */ public interface ExamPaymentMapper extends BaseMapper { /** * 自定义分页 * * @param page 分页 * @param examPayment 实体 * @return */ List selectExamPaymentPage(IPage page, @Param("examPayment") ExamPaymentVO examPayment); /** * 详情 * * @param examPayment 考试缴费信息对象 */ ExamPaymentVO selectExamPaymentInfo(@Param("examPayment") ExamPayment examPayment); }