RedisEnum.php 862 字节
<?php
namespace app\common\enum;

/**
 * 缓存名称枚举类
 * Class RedisEnum
 * @package app\common\enum
 */
class RedisEnum extends EnumBasics
{
    // 权限 urls
    const API_URLS = 'api_urls';
	
	// 缓存模块,无需验证 urls
	const API_URLS_ALLOW_TABLE = 'api_urls';
	const API_URLS_ALLOW_KEY = 'cgi_allow';
	const API_URLS_ALLOW_HASH = API_URLS_ALLOW_TABLE . ':' . API_URLS_ALLOW_KEY;

	// 缓存模块,无需验证 urls
	const API_IPS_ALLOW_TABLE = 'api_urls';
	const API_IPS_ALLOW_KEY = 'cgi_allow';
	const API_IPS_ALLOW_HASH = API_IPS_ALLOW_TABLE . ':' . API_IPS_ALLOW_KEY;

	/**
     * 获取枚举数据
     * @return array
     */
    public static function data()
    {
        return [
            self::API_URLS => [
                'name' => '权限 URL',
                'value' => self::API_URLS,
            ]
        ];
    }
}