/**
  * 设置所属模块
  * @param  string  $modName
  * @throws EGP_Exception
  */
 public function setModule($modName)
 {
     $module = new ModuleModel();
     if (!$module->exists($modName)) {
         throw new EGP_Exception("指定的模块名称 '{$modName}' 不存在");
     }
     $this->_modName = $modName;
     $this->_modDesc = $module->getDesc($this->_modName);
 }