1234567891011121314151617181920 |
- <?php
- namespace App\Http\Constant;
- class CacheConstant
- {
- const NOW_MONTH_KEY_WORDS_CACHE_KEY = '_nowMonthKeywordsCacheKey_';
- const LAST_MONTH_KEY_WORDS_CACHE_KEY = '_lastMonthKeywordsCacheKey_';
- const LAST_MONTH_BQ_KEY_WORDS_CACHE_KEY = '_lastMonthBqKeywordsCacheKey_';
- const NOW_MONTH_INQUIRE_CACHE_KEY = '_nowMonthInquireCacheKey_';
- const LAST_MONTH_INQUIRE_CACHE_KEY = '_lastMonthInquireCacheKey_';
- const LAST_MONTH_BQ_INQUIRE_CACHE_KEY = '_lastMonthBqInquireCacheKey_';
- const NOW_MONTH_FLOW_CACHE_KEY = '_nowMonthFlowCacheKey_';
- const LAST_MONTH_FLOW_CACHE_KEY = '_lastMonthFlowCacheKey_';
- const LAST_MONTH_BQ_FLOW_CACHE_KEY = '_lastMonthBqFlowCacheKey_';
- }
|