[测评系统]--测评系统核心代码库
linzhijie
2021-08-04 03f3d70b6770a889c3918d41951c27dfa08a21bf
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
73
74
package com.ots.project.exam.domain;
import com.ots.framework.aspectj.lang.annotation.Excel;
import com.ots.framework.web.domain.BaseEntity;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
 
@Getter
@Setter
public class TQuestion extends BaseEntity {
    private static final long serialVersionUID = 1L;
    
    private Long id;
    
    @Excel(name = "题型")
    private Long questionType;
    
    private String langType;
    private String langName;
    
    @Excel(name = "维度")
    private Long subjectId;
    
    private String subjectName;
    
    @Excel(name = "题目总分")
    private Long score;
    
    private Long gradeLevel;
    
    private Long level;
    
    private Long difficult;
    
    private String correct;
    
    @Excel(name = "题干id")
    private Long infoTextContentId;
    
    private String title;
    
    private Long createUser;
    
    private Long status;
    
    private Long deleted;
    
    private List<String> choiceInput;
    
    private List<String> selectInput;
    
    private String analyze;
    
    private String content;
    
    private String permanentId;
    
    private Long lastId;
    private Long levelId;
    private String levelName;
    
    private Long uuid;
    private String questionTemplateId;
    private String template;
    public TQuestion() {
        this.questionType = 1L;
        this.status = 1L;
    }
    
    private String multilingual;
    private List<String> multilingualList;
    
    private Integer partOrder;
}