@@ -0,0 +1,17 @@
+package cn.com.qmth.examcloud.service.core.enums;
+
+public enum OrgType {
+ SCHOOL("学校"),
+ PRINT_QMTH("启明"),
+ PRINT_SHOP("印刷");
+ private String name;
+ private OrgType(String name){
+ this.name = name;
+ }
+ public String getName(){
+ return this.name;
+}
@@ -4,5 +4,5 @@ package cn.com.qmth.examcloud.service.core.enums;
* Created by songyue on 17/2/22.
*/
public enum UserType {
- NOT_STUDENT,STUDENT
+ NOT_STUDENT,STUDENT,PRINT
}