cacheEnum.ts 397 B

12345678910111213141516171819
  1. /* eslint-disable */
  2. // token key
  3. export const TOKEN_KEY = 'TOKEN__'
  4. // role role key
  5. export const ROLES_KEY = 'ROLES__KEY__'
  6. export const PERM_LIST_KEY = 'PERM_LIST_KEY'
  7. // base global local key
  8. export const APP_LOCAL_CACHE_KEY = 'COMMON__LOCAL__KEY__'
  9. // base global session key
  10. export const APP_SESSION_CACHE_KEY = 'COMMON__SESSION__KEY__'
  11. export enum CacheTypeEnum {
  12. SESSION,
  13. LOCAL
  14. }