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
| package com.mindskip.xzs.domain.vo;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @author:xp
| * @date:2024/5/10 11:07
| */
| @Data
| public class QuestionVO {
|
| private Integer id;
|
| /** 题目内容JSON */
| private String contentJson;
|
| /** 题目类型 */
| private Integer questionType;
|
| /** 难度 */
| private Integer difficult;
|
| /** 内容对象 */
| private QuestionContentVO content;
|
| /** 普通题目答案:单选、判断、问答 */
| private String correct;
|
| /** 多选题答案 */
| private List<String> correctList;
|
| }
|
|