CacheConst.java 439 B

123456789101112131415161718192021
  1. package com.bizmatics.service.constants;
  2. /**
  3. * 缓存的key 常量
  4. */
  5. public class CacheConst {
  6. /**
  7. * oauth 客户端信息
  8. */
  9. public static final String CLIENT_DETAILS_KEY = "oauth:client:details";
  10. /**
  11. * system config cache key
  12. */
  13. public static final String SYS_CONFIG_KEY = "sys_config:";
  14. /**
  15. * 字典管理 cache key
  16. */
  17. public static final String SYS_DICT_KEY = "sys_dict:";
  18. }