package org.springblade.modules.apply.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import org.springblade.modules.apply.entity.ExamPayment; import org.springblade.modules.apply.excel.ApplyExcel; import org.springblade.modules.apply.vo.ExamPaymentVO; import java.util.List; /** * 考试缴费服务类 * @author zhongrj */ public interface ExamPaymentService extends IService { /** * 自定义分页 * @param page * @param examPayment * @return */ IPage selectExamPaymentPage(IPage page, ExamPaymentVO examPayment); /** * 详情 * @param examPayment 考试缴费信息对象 * @return */ ExamPaymentVO selectExamPaymentInfo(ExamPayment examPayment); }