Parcourir la source

修改机构枚举字符串

wangwei il y a 7 ans
Parent
commit
9d68146557

+ 10 - 7
examcloud-core-basic-dao/src/main/java/cn/com/qmth/examcloud/core/basic/dao/enums/OrgType.java

@@ -1,17 +1,20 @@
 package cn.com.qmth.examcloud.core.basic.dao.enums;
 
 public enum OrgType {
+
 	SCHOOL("学校"),
-	PRINT_QMTH("启明"),
-	PRINT_SUPPLIER("印刷");
-	
+
+	QMTH("启明泰和"),
+
+	PRINTER("印刷");
+
 	private String name;
-	
-	private OrgType(String name){
+
+	private OrgType(String name) {
 		this.name = name;
 	}
-	
-	public String getName(){
+
+	public String getName() {
 		return this.name;
 	}
 }