派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
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
package com.qxueyou.scc.school.model;
 
import java.io.Serializable;
 
/**
 * 互动每道题答案
 * 
 * @author zhiyong
 *
 */
public class InterateAnswer implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 5231270523566561011L;
 
    private String exerciseId;
    
    private int type;
 
    private String answer;
    
    private String correct;
    
    public String getExerciseId() {
        return exerciseId;
    }
 
 
    public int getType() {
        return type;
    }
 
 
    public void setType(int type) {
        this.type = type;
    }
 
 
    public String getAnswer() {
        return answer;
    }
 
 
    public void setAnswer(String answer) {
        this.answer = answer;
    }
 
    public void setExerciseId(String exerciseId) {
        this.exerciseId = exerciseId;
    }
 
 
    public String getCorrect() {
        return correct;
    }
 
    public void setCorrect(String correct) {
        this.correct = correct;
    }
    
}