<?php
/**
* * * * * * * *<4297088@qq.com>
* */
namespace cn\gz53\framework\model\po\script;
use cn\gz53\framework\model\po\Po;
use cn\gz53\framework\sdk\cache\ConfigCacheMainKeyGetSdkI;
use cn\gz53\framework\sdk\cache\ConfigCacheMainKeySetSdkI;
class ScriptServerConfigCachePo extends Po implements ConfigCacheMainKeySetSdkI, ConfigCacheMainKeyGetSdkI
{
const CONFIG_KEY = 'http_script';
private $config;
public function getConfigKey(){
return self::CONFIG_KEY;
}
public function getConfig(){
return $this->config;
}
public function setConfig($config){
$this->config = $config;
}
}