|
|
@ -22,7 +22,7 @@ public class QuestionEntity extends SuperEntity<QuestionEntity> implements Seria
|
|
|
|
|
|
|
|
|
|
|
|
private String answer;
|
|
|
|
private String answer;
|
|
|
|
|
|
|
|
|
|
|
|
private BigInteger chapterId;
|
|
|
|
private String chapterId;
|
|
|
|
|
|
|
|
|
|
|
|
private String questionType;
|
|
|
|
private String questionType;
|
|
|
|
|
|
|
|
|
|
|
@ -36,7 +36,7 @@ public class QuestionEntity extends SuperEntity<QuestionEntity> implements Seria
|
|
|
|
|
|
|
|
|
|
|
|
private String year;
|
|
|
|
private String year;
|
|
|
|
|
|
|
|
|
|
|
|
private Integer score;
|
|
|
|
private String score;
|
|
|
|
|
|
|
|
|
|
|
|
private String auditStatus;
|
|
|
|
private String auditStatus;
|
|
|
|
|
|
|
|
|
|
|
@ -68,11 +68,11 @@ public class QuestionEntity extends SuperEntity<QuestionEntity> implements Seria
|
|
|
|
this.answer = answer;
|
|
|
|
this.answer = answer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public BigInteger getChapterId() {
|
|
|
|
public String getChapterId() {
|
|
|
|
return this.chapterId;
|
|
|
|
return this.chapterId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setChapterId(BigInteger chapterId) {
|
|
|
|
public void setChapterId(String chapterId) {
|
|
|
|
this.chapterId = chapterId;
|
|
|
|
this.chapterId = chapterId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -108,11 +108,11 @@ public class QuestionEntity extends SuperEntity<QuestionEntity> implements Seria
|
|
|
|
this.year = year;
|
|
|
|
this.year = year;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getScore() {
|
|
|
|
public String getScore() {
|
|
|
|
return score;
|
|
|
|
return score;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setScore(Integer score) {
|
|
|
|
public void setScore(String score) {
|
|
|
|
this.score = score;
|
|
|
|
this.score = score;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|