xiangpei
2024-05-31 c9d04bc519b73f7fc4841c34e2f15fca9db7aad2
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
package com.ycl.jxkg.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.jxkg.domain.ExamPaper;
import com.ycl.jxkg.domain.User;
import com.ycl.jxkg.vo.admin.exam.ExamPaperEditRequestVO;
import com.ycl.jxkg.vo.admin.exam.ExamPaperPageRequestVO;
import com.ycl.jxkg.vo.student.dashboard.PaperFilter;
import com.ycl.jxkg.vo.student.dashboard.PaperInfo;
import com.ycl.jxkg.vo.student.exam.ExamPaperPageVO;
import com.github.pagehelper.PageInfo;
 
import java.util.List;
 
public interface ExamPaperService extends IService<ExamPaper> {
 
    PageInfo<ExamPaper> page(ExamPaperPageRequestVO requestVM);
 
    PageInfo<ExamPaper> taskExamPage(ExamPaperPageRequestVO requestVM);
 
    PageInfo<ExamPaper> studentPage(ExamPaperPageVO requestVM);
 
    ExamPaper savePaperFromVM(ExamPaperEditRequestVO examPaperEditRequestVO, User user);
 
    ExamPaperEditRequestVO examPaperToVM(Integer id);
 
    List<PaperInfo> indexPaper(PaperFilter paperFilter);
 
    Integer selectAllCount();
 
    List<Integer> selectMothCount();
}