idRedeVersaoModulo; } /** * Set nmModulo * * @param string $nmModulo * @return RedeVersaoModulo */ public function setNmModulo($nmModulo) { $this->nmModulo = $nmModulo; return $this; } /** * Get nmModulo * * @return string */ public function getNmModulo() { return $this->nmModulo; } /** * Set teVersaoModulo * * @param string $teVersaoModulo * @return RedeVersaoModulo */ public function setTeVersaoModulo($teVersaoModulo) { $this->teVersaoModulo = $teVersaoModulo; return $this; } /** * Get teVersaoModulo * * @return string */ public function getTeVersaoModulo() { return $this->teVersaoModulo; } /** * Set dtAtualizacao * * @param \DateTime $dtAtualizacao * @return RedeVersaoModulo */ public function setDtAtualizacao($dtAtualizacao) { $this->dtAtualizacao = $dtAtualizacao; return $this; } /** * Get dtAtualizacao * * @return \DateTime */ public function getDtAtualizacao() { return $this->dtAtualizacao; } /** * Set csTipoSo * * @param string $csTipoSo * @return RedeVersaoModulo */ public function setCsTipoSo($csTipoSo) { $this->csTipoSo = $csTipoSo; return $this; } /** * Get csTipoSo * * @return string */ public function getCsTipoSo() { return $this->csTipoSo; } /** * Set teHash * * @param string $teHash * @return RedeVersaoModulo */ public function setTeHash($teHash) { $this->teHash = $teHash; return $this; } /** * Get teHash * * @return string */ public function getTeHash() { return $this->teHash; } /** * Set idRede * * @param \Cacic\CommonBundle\Entity\Rede $idRede * @return RedeVersaoModulo */ public function setIdRede(\Cacic\CommonBundle\Entity\Rede $idRede = null) { $this->idRede = $idRede; return $this; } /** * Get idRede * * @return \Cacic\CommonBundle\Entity\Rede */ public function getIdRede() { return $this->idRede; } /** * Método construtor */ public function __construct($nmModulo = null, $teVersaoModulo = null, $dtAtualizacao = null, $csTipoSo = null, $teHash = null, $idRede) { $this->setNmModulo($nmModulo); $this->setTeVersaoModulo($teVersaoModulo); $this->setDtAtualizacao($dtAtualizacao); $this->setCsTipoSo($csTipoSo); $this->setTeHash($teHash); $this->setIdRede($idRede); } /** * @var string */ private $tipo; /** * Set tipo * * @param string $tipo * @return RedeVersaoModulo */ public function setTipo($tipo) { $this->tipo = $tipo; return $this; } /** * Get tipo * * @return string */ public function getTipo() { return $this->tipo; } /** * @var \Cacic\CommonBundle\Entity\TipoSo */ private $tipoSo; /** * Set tipoSo * * @param \Cacic\CommonBundle\Entity\TipoSo $tipoSo * @return RedeVersaoModulo */ public function setTipoSo(\Cacic\CommonBundle\Entity\TipoSo $tipoSo = null) { $this->tipoSo = $tipoSo; return $this; } /** * Get tipoSo * * @return \Cacic\CommonBundle\Entity\TipoSo */ public function getTipoSo() { return $this->tipoSo; } /** * @var string */ private $filepath; /** * Set filepath * * @param string $filepath * @return RedeVersaoModulo */ public function setFilepath($filepath) { $this->filepath = $filepath; return $this; } /** * Get filepath * * @return string */ public function getFilepath() { return $this->filepath; } }