@@ -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;