CacheConstant.php 704 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Constant;
  3. class CacheConstant
  4. {
  5. const NOW_MONTH_KEY_WORDS_CACHE_KEY = '_nowMonthKeywordsCacheKey_';
  6. const LAST_MONTH_KEY_WORDS_CACHE_KEY = '_lastMonthKeywordsCacheKey_';
  7. const LAST_MONTH_BQ_KEY_WORDS_CACHE_KEY = '_lastMonthBqKeywordsCacheKey_';
  8. const NOW_MONTH_INQUIRE_CACHE_KEY = '_nowMonthInquireCacheKey_';
  9. const LAST_MONTH_INQUIRE_CACHE_KEY = '_lastMonthInquireCacheKey_';
  10. const LAST_MONTH_BQ_INQUIRE_CACHE_KEY = '_lastMonthBqInquireCacheKey_';
  11. const NOW_MONTH_FLOW_CACHE_KEY = '_nowMonthFlowCacheKey_';
  12. const LAST_MONTH_FLOW_CACHE_KEY = '_lastMonthFlowCacheKey_';
  13. const LAST_MONTH_BQ_FLOW_CACHE_KEY = '_lastMonthBqFlowCacheKey_';
  14. }