<?php
/**
* * * * * * * *<4297088@qq.com>
* */
namespace cn\gz53\framework\model\bo\env;
use cn\gz53\framework\dao\env\EnvCacheAppPathSetDaoI;
use cn\gz53\framework\dao\env\EnvCheckAppPathCheckDaoI;
use cn\gz53\framework\model\bo\Bo;
class EnvCheckAppPathsBo extends Bo implements EnvCheckAppPathCheckDaoI, EnvCacheAppPathSetDaoI
{
private $localPath;
private $vendorPath;
private $binPath;
private $confPath;
private $confDeployFile;
private $confInitPath;
private $confMainPath;
private $confMainDevelopmentPath;
private $confMainProductionPath;
private $confRouterPath;
private $confServicePath;
private $dataPath;
private $dataCertPath;
private $dataSqlPath;
private $dataTemplatePath;
private $dataUploadPath;
private $runtimePath;
private $runtimeLogPath;
private $runtimePidPath;
private $runtimeTmpPath;
public function getLocalPath(){
return $this->localPath;
}
public function setLocalPath($localPath){
$this->localPath = $localPath;
}
public function getVendorPath(){
return $this->vendorPath;
}
public function setVendorPath($vendorPath){
$this->vendorPath = $vendorPath;
}
public function getBinPath(){
return $this->binPath;
}
public function setBinPath($binPath){
$this->binPath = $binPath;
}
public function getConfPath(){
return $this->confPath;
}
public function setConfPath($confPath){
$this->confPath = $confPath;
}
public function getConfDeployFile(){
return $this->confDeployFile;
}
public function setConfDeployFile($confDeployFile){
$this->confDeployFile = $confDeployFile;
}
public function getConfInitPath(){
return $this->confInitPath;
}
public function setConfInitPath($confInitPath){
$this->confInitPath = $confInitPath;
}
public function getConfMainPath(){
return $this->confMainPath;
}
public function setConfMainPath($confMainPath){
$this->confMainPath = $confMainPath;
}
public function getConfMainDevelopmentPath(){
return $this->confMainDevelopmentPath;
}
public function setConfMainDevelopmentPath($confMainDevelopmentPath){
$this->confMainDevelopmentPath = $confMainDevelopmentPath;
}
public function getConfMainProductionPath(){
return $this->confMainProductionPath;
}
public function setConfMainProductionPath($confMainProductionPath){
$this->confMainProductionPath = $confMainProductionPath;
}
public function getConfRouterPath(){
return $this->confRouterPath;
}
public function setConfRouterPath($confRouterPath){
$this->confRouterPath = $confRouterPath;
}
public function getConfServicePath(){
return $this->confServicePath;
}
public function setConfServicePath($confServicePath){
$this->confServicePath = $confServicePath;
}
public function getDataPath(){
return $this->dataPath;
}
public function setDataPath($dataPath){
$this->dataPath = $dataPath;
}
public function getDataCertPath(){
return $this->dataCertPath;
}
public function setDataCertPath($dataCertPath){
$this->dataCertPath = $dataCertPath;
}
public function getDataSqlPath(){
return $this->dataSqlPath;
}
public function setDataSqlPath($dataSqlPath){
$this->dataSqlPath = $dataSqlPath;
}
public function getDataTemplatePath(){
return $this->dataTemplatePath;
}
public function setDataTemplatePath($dataTemplatePath){
$this->dataTemplatePath = $dataTemplatePath;
}
public function getDataUploadPath(){
return $this->dataUploadPath;
}
public function setDataUploadPath($dataUploadPath){
$this->dataUploadPath = $dataUploadPath;
}
public function getRuntimePath(){
return $this->runtimePath;
}
public function setRuntimePath($runtimePath){
$this->runtimePath = $runtimePath;
}
public function getRuntimeLogPath(){
return $this->runtimeLogPath;
}
public function setRuntimeLogPath($runtimeLogPath){
$this->runtimeLogPath = $runtimeLogPath;
}
public function getRuntimePidPath(){
return $this->runtimePidPath;
}
public function setRuntimePidPath($runtimePidPath){
$this->runtimePidPath = $runtimePidPath;
}
public function getRuntimeTmpPath(){
return $this->runtimeTmpPath;
}
public function setRuntimeTmpPath($runtimeTmpPath){
$this->runtimeTmpPath = $runtimeTmpPath;
}
}