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