<?php
/**
* * * * * * * *<4297088@qq.com>
* */
namespace cn\gz53\framework\model\bo\loop;
use cn\gz53\framework\dao\loop\WhileTrueConfigLoadDaoI;
use cn\gz53\framework\dao\loop\WhileTrueConfigStoreDaoI;
use cn\gz53\framework\model\bo\Bo;
use cn\gz53\framework\dao\env\EnvCheckMainDeployPathGetDaoI;
class WhileTrueConfigLoadBo extends Bo implements EnvCheckMainDeployPathGetDaoI, WhileTrueConfigLoadDaoI, WhileTrueConfigStoreDaoI
{
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;
}
}