智慧保安后台管理-外网项目备份
guoshilong
2023-12-11 e20a1210b53659c61ee785110f2c179846c35aa6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.springblade.modules.exam.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.core.mp.base.BaseService;
import org.springblade.modules.exam.entity.ExaminationNote;
import org.springblade.modules.exam.vo.ExaminationNoteVO;
 
public interface IExaminationNoteService extends BaseService<ExaminationNote> {
    /**
     * 自定义分页
     * @param page
     * @param examinationNoteVO
     * @return
     */
    IPage<ExaminationNoteVO> getPage(IPage<ExaminationNoteVO> page, ExaminationNoteVO examinationNoteVO);
 
    ExaminationNoteVO getDetail(ExaminationNoteVO vo);
 
    ExaminationNoteVO getDpDetail();
}