baizonghao
2023-07-31 98b2f41e13c48219e054cf8b80c459298a01c910
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.mindskip.xzs.viewmodel.admin.question;
 
import com.mindskip.xzs.viewmodel.BaseVM;
import lombok.Data;
 
/**
 * @version 2.2.0
 * @description: 题目返回
 * Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
 * @date 2021 /9/7 9:45
 */
@Data
public class QuestionResponseVM extends BaseVM {
 
    private Integer id;
 
    /**
     * 题型
     */
    private Integer questionType;
 
    /**
     * 题目内容
     */
    private Integer textContentId;
 
    /**
     * 创建时间
     */
    private String createTime;
 
    /**
     * 学科
     */
    private Integer subjectId;
 
    /**
     * 创建人
     */
    private Integer createUser;
 
    /**
     * 得分
     */
    private String score;
 
    /**
     * 状态
     */
    private Integer status;
 
    /**
     * 标答
     */
    private String correct;
 
    /**
     * 解析
     */
    private Integer analyzeTextContentId;
 
    /**
     * 难度
     */
    private Integer difficult;
 
    /**
     * 题干
     */
    private String shortTitle;
 
}