WANG 6 years ago
parent
commit
a41ed7f3c7
1 changed files with 35 additions and 0 deletions
  1. 35 0
      src/main/java/cn/com/qmth/examcloud/api/commons/enums/ExamType.java

+ 35 - 0
src/main/java/cn/com/qmth/examcloud/api/commons/enums/ExamType.java

@@ -0,0 +1,35 @@
+package cn.com.qmth.examcloud.api.commons.enums;
+
+/**
+ * 
+ * @Description: 考试类型
+ * @author ting.yin
+ * @date 2017年1月5日
+ */
+public enum ExamType {
+	/**
+	 * 传统
+	 */
+	TRADITION,
+
+	/**
+	 * 网考
+	 */
+	ONLINE,
+
+	/**
+	 * 练习
+	 */
+	PRACTICE,
+
+	/**
+	 * 离线
+	 */
+	OFFLINE,
+
+	/**
+	 * 分布式印刷考试
+	 */
+	PRINT_EXAM,
+
+}