Files
hyperf_service/app/Cache/Redis/Common/CommonRedisKey.php
2024-10-31 16:30:29 +08:00

15 lines
243 B
PHP

<?php
namespace App\Cache\Redis\Common;
class CommonRedisKey
{
/**
* @var $type
* @return string
*/
public static function getSystemRegionList($type = 'all')
{
return '__system:address:list:'.$type;
}
}