mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 18:30:16 +08:00
15 lines
223 B
PHP
15 lines
223 B
PHP
<?php
|
|
|
|
namespace App\Cache\Redis;
|
|
|
|
class RedisKey
|
|
{
|
|
/**
|
|
* @param int $id
|
|
* @return string
|
|
*/
|
|
public static function getAdminUserInfoKey(int $id): string
|
|
{
|
|
return 'admin_user:'.$id;
|
|
}
|
|
} |