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