|
@@ -38,6 +38,11 @@ public class DefaultQuestionStructureWrapper implements QuestionStructureWrapper
|
|
*/
|
|
*/
|
|
private Integer playedTimes;
|
|
private Integer playedTimes;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 作答限时
|
|
|
|
+ */
|
|
|
|
+ private Long timeLimit;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 题单元包装器
|
|
* 题单元包装器
|
|
*/
|
|
*/
|
|
@@ -96,4 +101,12 @@ public class DefaultQuestionStructureWrapper implements QuestionStructureWrapper
|
|
this.playedTimes = playedTimes;
|
|
this.playedTimes = playedTimes;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Long getTimeLimit() {
|
|
|
|
+ return timeLimit;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTimeLimit(Long timeLimit) {
|
|
|
|
+ this.timeLimit = timeLimit;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|