Quellcode durchsuchen

考试抽题模式

xiatian vor 2 Jahren
Ursprung
Commit
615a256b84

+ 13 - 0
examcloud-support/src/main/java/cn/com/qmth/examcloud/support/cache/bean/ExamSettingsCacheBean.java

@@ -47,6 +47,11 @@ public class ExamSettingsCacheBean extends RandomCacheBean {
 	 * 考试类型
 	 */
 	private String examType;
+	
+	/**
+	 * 抽题模式
+	 */
+	private String callType;
 
 	/**
 	 * 考试时长
@@ -195,4 +200,12 @@ public class ExamSettingsCacheBean extends RandomCacheBean {
 		this.specialSettingsType = specialSettingsType;
 	}
 
+	public String getCallType() {
+		return callType;
+	}
+
+	public void setCallType(String callType) {
+		this.callType = callType;
+	}
+
 }