| 12345678910111213141516171819202122232425 |
- package com.izouma.nineth.enums;
- public enum AuthorityName {
- ROLE_USER("普通用户"),
- ROLE_MINTER("铸造者"),
- ROLE_DEV("开发者"),
- ROLE_ADMIN("高级管理员"),
- ROLE_OPERATOR("普通管理员"),
- ROLE_NEWS("新闻管理员"),
- ROLE_ORDERINFO("订单查看"),
- ROLE_COMPANY("企业用户"),
- ROLE_MESSAGE("留言管理员"),
- ROLE_SAAS("SAAS管理员"),
- ROLE_META("元宇宙管理员"),
- ROLE_GROUP("群组管理员");
- private final String description;
- AuthorityName(String description) {
- this.description = description;
- }
- public String getDescription() {
- return description;
- }
- }
|