qirong
2023-07-28 fbdd6af3039a83cd4727a03cecb7c5914277371f
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
package com.mindskip.xzs.viewmodel.admin.exam;
 
import java.io.Serializable;
 
/**
 * 随机试卷题型数量
 */
public class QuestionTypeVM implements Serializable {
 
    //题目id
    private Integer subjectId;
 
    private String label;
 
    //单选题
    private Integer singleChoice;
 
    //多选题
    private Integer multipleChoice;
 
    //判断题
    private Integer trueFalse;
 
    public Integer getSubjectId() {
        return subjectId;
    }
 
    public void setSubjectId(Integer subjectId) {
        this.subjectId = subjectId;
    }
 
    public Integer getSingleChoice() {
        return singleChoice;
    }
 
    public void setSingleChoice(Integer singleChoice) {
        this.singleChoice = singleChoice;
    }
 
    public Integer getMultipleChoice() {
        return multipleChoice;
    }
 
    public void setMultipleChoice(Integer multipleChoice) {
        this.multipleChoice = multipleChoice;
    }
 
    public Integer getTrueFalse() {
        return trueFalse;
    }
 
    public void setTrueFalse(Integer trueFalse) {
        this.trueFalse = trueFalse;
    }
 
    public String getLabel() {
        return label;
    }
 
    public void setLabel(String label) {
        this.label = label;
    }
}