IPaperService.java
1.9 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.skua.modules.edu.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.skua.modules.edu.entity.Paper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.skua.modules.edu.entity.Question;
import com.skua.modules.edu.vo.PaperVO;
import com.skua.modules.edu.vo.UserPaperVO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 在线考试-试卷
*/
public interface IPaperService extends IService<Paper> {
/***
* 添加试卷、试卷试题表
* @param paperVO
* @return
*/
public int savePaper(PaperVO paperVO)throws Exception;
/**
* 修改试卷、试卷试题表
* @param paperVO
* @return
* @throws Exception
*/
public boolean updatePaper(PaperVO paperVO) throws Exception ;
/***
* 根据试卷编号获取试卷以及试题集合
* @param id
* @return
*/
public PaperVO queryById(String id);
/***
* 根据用户编号、试卷编号查询试题集合 包含用户答案 、试题分值
* @param userPaperId
* @return
*/
public PaperVO queryPaperByUserPaperId( String userPaperId);
/***
* 交卷
* @param paperVO
*/
public String submitPaper(UserPaperVO paperVO);
/***
* 根据试卷编号、用户编号,校验考试次数
* @param paperId
* @param userId
* @return
*/
public Boolean checkExamCount(String paperId, String userId);
/***
* 我的试卷列表
* @param page
* @param paper
* @return
*/
IPage<Paper> queryMyPaperByList(Page<Paper> page, Paper paper);
/***
* 我的试卷记录
* @param page
* @param paper
* @return
*/
IPage<Paper> queryMyPaperRecoredByList(Page<Paper> page, Paper paper);
}