1234567891011121314151617 |
- <?php
- namespace app\utils;
- class RedisKeyEnum
- {
-
- const NO = 'NO:';
- const ORDER_NO = 'ORDER_NO:';
- const API_REQUEST_TRAFFIC = 'API_REQUEST_TRAFFIC:';
- const WX_MINI_APP_ACCESS_TOKEN = 'WX_MINI_APP_ACCESS_TOKEN:';
- const TOKEN_ONCE = 'TOKEN_ONCE:';
- const TOKEN_TIME = 'TOKEN_TIME:';
- const FA_SITE_SETUP = 'FA_SITE_SETUP:';
- }
|