浏览代码

。。。

wangwei 6 年之前
父节点
当前提交
1085a68720

+ 13 - 0
src/main/java/cn/com/qmth/examcloud/question/core/paper/DefaultQuestionStructureWrapper.java

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