AuthorityName.java 667 B

12345678910111213141516171819202122232425
  1. package com.izouma.nineth.enums;
  2. public enum AuthorityName {
  3. ROLE_USER("普通用户"),
  4. ROLE_MINTER("铸造者"),
  5. ROLE_DEV("开发者"),
  6. ROLE_ADMIN("高级管理员"),
  7. ROLE_OPERATOR("普通管理员"),
  8. ROLE_NEWS("新闻管理员"),
  9. ROLE_ORDERINFO("订单查看"),
  10. ROLE_COMPANY("企业用户"),
  11. ROLE_MESSAGE("留言管理员"),
  12. ROLE_SAAS("SAAS管理员"),
  13. ROLE_META("元宇宙管理员"),
  14. ROLE_GROUP("群组管理员");
  15. private final String description;
  16. AuthorityName(String description) {
  17. this.description = description;
  18. }
  19. public String getDescription() {
  20. return description;
  21. }
  22. }