<?php
/**
* * * * * * * *<4297088@qq.com>
* */
namespace cn\gz53\framework\model\bo\init\redis;
use cn\gz53\framework\dao\env\EnvCheckMainDeployPathGetDaoI;
use cn\gz53\framework\dao\redis\RedisPoolConfigLoadDaoI;
use cn\gz53\framework\dao\redis\RedisPoolConfigStoreDaoI;
use cn\gz53\framework\model\bo\Bo;
class RedisPoolConfigLoadBo extends Bo implements EnvCheckMainDeployPathGetDaoI, RedisPoolConfigLoadDaoI, RedisPoolConfigStoreDaoI
{
private $mainDeployPath;
private $config;
public function getMainDeployPath(){
return $this->mainDeployPath;
}
public function setMainDeployPath($mainDeployPath){
$this->mainDeployPath = $mainDeployPath;
}
public function getConfig(){
return $this->config;
}
public function setConfig($config){
$this->config = $config;
}
}