123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.xjrsoft.common.enums;
- /**
- * 系统角色编码
- */
- public enum RoleCodeEnum {
- /**
- * 超级管理员
- */
- ADMIN("ADMIN", "超级管理员"),
- /**
- * 教师
- */
- TEACHER("TEACHER", "教师"),
- /**
- * 学生
- */
- STUDENT("STUDENT", "学生"),
- /**
- * 家长
- */
- PARENT("PARENT", "家长"),
- CLASSTE("CLASSTE", "班主任");
- final String code;
- final String value;
- public String getCode() {
- return this.code;
- }
- public String getValue() {
- return this.value;
- }
- RoleCodeEnum(final String code, final String message) {
- this.code = code;
- this.value = message;
- }
- }
|