RedisKey.java 261 B

1234567891011121314
  1. package com.boman.common.redis;
  2. /**
  3. * @author shiqian
  4. * @date 2021年03月26日 13:25
  5. **/
  6. public class RedisKey {
  7. /**
  8. * 建表的信息存在redis中的key
  9. * eg: table:tableName
  10. */
  11. public static final String TABLE_INFO = "table:";
  12. }