mirror of
https://github.com/201206030/novel.git
synced 2025-07-11 15:16:38 +00:00
11 lines
524 B
Java
11 lines
524 B
Java
package xyz.zinglizingli.books.constant;
|
|
|
|
public class CacheKeyConstans {
|
|
public static final String HOT_BOOK_LIST_KEY = "hotBookListKey";
|
|
public static final String NEWST_BOOK_LIST_KEY = "newstBookListKey";
|
|
public static final String BOOK_CONTENT_KEY_PREFIX = "bookContentKeyPrefix";
|
|
public static final String EMAIL_URL_PREFIX_KEY = "emailUrlPrefixKey";
|
|
public static final String RANDOM_NEWS_CONTENT_KEY = "randomNewsContentKey";
|
|
public static final String REC_BOOK_LIST_KEY = "recBookListKey";
|
|
}
|