package com.qxueyou.scc.exercise.model;
|
|
import java.io.Serializable;
|
|
/**
|
* 练习答案提交结果数据
|
* @author zhiyong
|
*
|
*/
|
public class ExerciseItemAnswerData implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 5231270523566561011L;
|
|
/**
|
* 答案ID
|
*/
|
private String answerUId;
|
|
/** 练习id */
|
private String exerciseId;
|
|
/** 题目类型 */
|
private int type;
|
|
/** 选择答案 */
|
private String answer;
|
|
/** 是否正确 0:错误 1:正确 */
|
private String correct;
|
|
/**主观题打分 */
|
private String teacherScore;
|
|
public String getExerciseId() {
|
return exerciseId;
|
}
|
|
public void setExerciseId(String exerciseId) {
|
this.exerciseId = 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 String getCorrect() {
|
return correct;
|
}
|
|
public void setCorrect(String correct) {
|
this.correct = correct;
|
}
|
|
public String getAnswerUId() {
|
return answerUId;
|
}
|
|
public void setAnswerUId(String answerUId) {
|
this.answerUId = answerUId;
|
}
|
|
public String getTeacherScore() {
|
return teacherScore;
|
}
|
|
public void setTeacherScore(String teacherScore) {
|
this.teacherScore = teacherScore;
|
}
|
|
}
|