IQuestionService.java
900 字节
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
package com.skua.modules.edu.service;
import com.skua.modules.edu.entity.Question;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* 在线考试-试题
*/
public interface IQuestionService extends IService<Question> {
/***
* 添加试题 以及试题选项
* @param question
* @return
*/
public int saveQuestion(Question question)throws Exception;
/***
* 修改试题 以及试题选项
* @param question
* @return
*/
public boolean updateQuestion(Question question) throws Exception ;
/***
* 修改试题 以及试题选项
* @param id
* @return
*/
public Question queryById(String id);
/***
* 校验 试题是否被试卷使用,如果使用返回true,未使用返回false
* @param questionId
* @return
*/
public boolean checkByPaper(String questionId);
}