WANG %!s(int64=6) %!d(string=hai) anos
pai
achega
ea4aa4c5a8

+ 27 - 0
src/main/java/cn/com/qmth/examcloud/api/commons/enums/NoticeReceiverRuleType.java

@@ -0,0 +1,27 @@
+package cn.com.qmth.examcloud.api.commons.enums;
+
+/**
+ * 公告接受规则类型
+ *
+ * @author WANGWEI
+ * @date 2019年6月27日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
+public enum NoticeReceiverRuleType {
+
+	/**
+	 * 归属考试的考生
+	 */
+	STUDENTS_OF_EXAM,
+
+	/**
+	 * 所有学生
+	 */
+	ALL_STUDENTS,
+
+	/**
+	 * 归属机构的学生
+	 */
+	STUDENTS_OF_ORG
+
+}

+ 22 - 0
src/main/java/cn/com/qmth/examcloud/api/commons/enums/NoticeStatus.java

@@ -0,0 +1,22 @@
+package cn.com.qmth.examcloud.api.commons.enums;
+
+/**
+ * 公告状态
+ *
+ * @author WANGWEI
+ * @date 2019年6月27日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
+public enum NoticeStatus {
+
+	/**
+	 * 创建
+	 */
+	CREATION,
+
+	/**
+	 * 发布
+	 */
+	PUBLISH,
+
+}