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;
|
}
|
|
}
|