fuliqi
2024-06-28 16b4725365f3286c2d2a80945e26f35f89b53f24
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
package com.ycl.jxkg.domain.vo;
 
import com.ycl.jxkg.domain.question.QuestionItemObject;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author:xp
 * @date:2024/6/13 15:27
 */
@Data
public class DoQuestionVO extends FinishedQuestion {
 
    private Integer id;
 
    /** 题目类型 */
    private Integer questionType;
 
    /** 题干 */
    private String title;
 
    /** 题目答案 */
    private String questionAnswer;
 
    /** 题目解析,老师阅卷使用 */
    private String analyze;
 
    /** 选项json */
    private String content;
 
    /** 题目难度 */
    private Integer difficult;
 
    /** 针对单选、判断、多选给出正确与否 */
    private Boolean right;
 
    /** 题目分数 */
    private BigDecimal questionScore;
 
    /** 语音题音频 */
    private String audioFile;
 
    /** 音频原始名 */
    private String originalFile;
 
    private Integer itemOrder;
    /** 题目选项 */
    private List<QuestionItemObject> questionItemList;
}