liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
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
package jnpf.tmsEntity.selftest;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
/**
 * 试卷题目(含作答回顾字段)
 */
@Data
public class TmsSelfTestQuestionVO {
 
    @Schema(description = "试题ID")
    private String id;
 
    @Schema(description = "试题编号")
    private String questionNo;
 
    @Schema(description = "题型")
    private String questionType;
 
    @Schema(description = "难度")
    private String difficulty;
 
    @Schema(description = "题干")
    private String stem;
 
    @Schema(description = "选项")
    private List<TmsSelfTestOptionVO> options;
 
    @Schema(description = "正确答案(逗号分隔标签)")
    private String correctAnswer;
 
    @Schema(description = "用户作答(逗号分隔标签)")
    private String userAnswer;
 
    @Schema(description = "是否正确 1/0")
    private String isRight;
 
    @Schema(description = "排序号")
    private Integer sortNo;
}