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.vo.ExamPaymentVO;
|
|
/**
|
* 考试缴费服务类
|
* @author zhongrj
|
*/
|
public interface ExamPaymentService extends IService<ExamPayment> {
|
|
/**
|
* 自定义分页
|
* @param page
|
* @param examPayment
|
* @return
|
*/
|
IPage<ExamPaymentVO> selectExamPaymentPage(IPage<ExamPaymentVO> page, ExamPaymentVO examPayment);
|
|
/**
|
* 详情
|
* @param examPayment 考试缴费信息对象
|
* @return
|
*/
|
ExamPaymentVO selectExamPaymentInfo(ExamPayment examPayment);
|
|
|
}
|