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