xiangpei
2024-05-31 16d10cef208de048f8b325facd143c54b7be9963
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
package com.ycl.jxkg.service;
 
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 BaseService<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();
}