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.ycl.jxkg.domain.vo;
|
| import com.ycl.jxkg.domain.base.AbsVo;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @author:xp
| * @date:2024/6/13 15:27
| */
| @Data
| public class DoQuestionVO extends AbsVo {
|
| /** 题目类型 */
| private Integer questionType;
|
| /** 题干 */
| private String titleContent;
|
| /** 学员答案 */
| private String answer;
| /** 学员多选题答案 */
| private List<String> answerList;
|
| /** 选项json,后端使用 */
| private String content;
|
| /** 正确与否,后端判断后填充该值 */
| private Boolean right;
|
| /** 题目选项 */
| private List<QuestionItemVO> questionItemList;
| }
|
|