CacheConstant.java 270 B

1234567891011121314151617181920
  1. package com.ytpm.constant;
  2. /**
  3. * 缓存名
  4. *
  5. * @author xuwh
  6. */
  7. public interface CacheConstant {
  8. /**
  9. * 缺省缓存
  10. */
  11. String DEFAULT_CACHE = "yt_other:";
  12. /**
  13. * 缺省缓存前缀
  14. */
  15. String DEFAULT_CACHE_PREFIX = "default:";
  16. }