SysConstant.java 704 B

12345678910111213141516171819202122232425262728293031
  1. package cc.uncarbon.module.sys.constant;
  2. /**
  3. * @author Uncarbon
  4. */
  5. public interface SysConstant {
  6. String SYS_MODULE_CONTEXT_PATH = "/sys";
  7. /**
  8. * 无上级节点的父级ID
  9. */
  10. Long ROOT_PARENT_ID = 0L;
  11. /**
  12. * Vben Admin后台管理-空页面
  13. */
  14. String VBEN_ADMIN_BLANK_VIEW = "LAYOUT";
  15. /**
  16. * 超级管理员角色ID
  17. */
  18. Long SUPER_ADMIN_ROLE_ID = 1L;
  19. /**
  20. * 敏感字段,`SysLogAspect` 切面记录系统操作日志时,会先去除敏感字段后再入库
  21. */
  22. String[] SENSITIVE_FIELDS = {"password", "oldPassword", "newPassword", "confirmNewPassword", "passwordOfNewUser", "randomPassword", "tenantAdminPassword"};
  23. }