智慧保安后台管理-外网项目备份
Administrator
2021-07-22 fd72a9045a8fc437b8c28bac0bdc98e0d29aa441
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
 
 
}