feat : city

This commit is contained in:
2024-10-31 16:30:29 +08:00
parent 39b5df9f0a
commit ceeeea7c34
9 changed files with 534 additions and 0 deletions

View File

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