You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
489 B
30 lines
489 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace app\card\controller;
|
|
|
|
/**
|
|
* @author shuixian
|
|
* @DataTime: 2019/12/26 14:16
|
|
* Class CardCacheKey
|
|
* @package app\card\controller
|
|
*/
|
|
class CardCacheKey
|
|
{
|
|
|
|
/**
|
|
* 名片配置缓存key
|
|
*
|
|
* @param $uniacid
|
|
* @return string
|
|
* @author shuixian
|
|
* @DataTime: 2019/12/26 14:21
|
|
*/
|
|
public static function cardAppConfig($uniacid){
|
|
|
|
return longbing_get_cache_key('card_app_config' , $uniacid) ;
|
|
|
|
}
|
|
|
|
} |