智慧保安后台管理-外网-验收版本
Administrator
2021-09-13 0d99d26f39e055ee17fdbf2c5cbd1daf695c4310
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
31
32
33
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<ExamPayment> {
 
    /**
     * 自定义分页
     *
     * @param page  分页
     * @param examPayment 实体
     * @return
     */
    List<ExamPaymentVO> selectExamPaymentPage(IPage page, @Param("examPayment") ExamPaymentVO examPayment);
 
    /**
     * 详情
     *
     * @param examPayment 考试缴费信息对象
     */
    ExamPaymentVO selectExamPaymentInfo(@Param("examPayment") ExamPayment examPayment);
 
}